From 4ac7c414c4c676be779524ef6175f5e77522bca9 Mon Sep 17 00:00:00 2001
From: Michael Gapczynski <mtgap@owncloud.com>
Date: Tue, 28 Aug 2012 11:08:24 -0400
Subject: [PATCH] Check if path info is empty for remote.php, prevent error

---
 remote.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/remote.php b/remote.php
index 41d2a7ab349..809a4a9bf54 100644
--- a/remote.php
+++ b/remote.php
@@ -2,7 +2,7 @@
 $RUNTIME_NOAPPS = TRUE;
 require_once('lib/base.php');
 $path_info = OC_Request::getPathInfo();
-if ($path_info === false) {
+if ($path_info === false || $path_info === '') {
 	OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND);
 	exit;
 }
-- 
GitLab