From 6a812644e4d0f6eed8dca4e20c6f7135d881012a Mon Sep 17 00:00:00 2001 From: Brice Maron Date: Mon, 4 Jun 2012 20:37:00 +0000 Subject: Correct remote and public, and last occurence of OC:: --- public.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'public.php') diff --git a/public.php b/public.php index f974e1c50d2..19c02a7a027 100644 --- a/public.php +++ b/public.php @@ -8,8 +8,8 @@ if(is_null($file)){ exit; } -$parts=explode('/',$file); -$app=$parts[2]; +$parts=explode('/',$file,2); +$app=$parts[0]; OC_App::loadApp($app); -require_once(OC::$APPSROOT . $file); +require_once(OC_App::getAppPath($app) .'/'. $parts[1]); -- cgit v1.2.3