diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-07-17 12:07:14 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-07-17 12:07:14 +0200 |
commit | ec4891b7d3a57b92cd833d6cbd1109ba1c45376e (patch) | |
tree | 2a15348f3df5bed07ba8cd8162577206c4b16542 /apps | |
parent | 2c9aa029a73957e61ed5e520dc54eaa5c75db472 (diff) | |
download | nextcloud-server-ec4891b7d3a57b92cd833d6cbd1109ba1c45376e.tar.gz nextcloud-server-ec4891b7d3a57b92cd833d6cbd1109ba1c45376e.zip |
Fixed require path.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/contacts/ajax/categories/delete.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contacts/ajax/categories/delete.php b/apps/contacts/ajax/categories/delete.php index 68a308e3221..f53d852d603 100644 --- a/apps/contacts/ajax/categories/delete.php +++ b/apps/contacts/ajax/categories/delete.php @@ -11,7 +11,7 @@ OCP\JSON::checkLoggedIn(); OCP\JSON::checkAppEnabled('contacts'); OCP\JSON::callCheck(); -require_once('../loghandler.php'); +require_once(__DIR__.'/../loghandler.php'); $categories = isset($_POST['categories'])?$_POST['categories']:null; |