diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-01-16 12:28:16 (GMT) |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-01-16 12:28:16 (GMT) |
commit | d7ca09fd4582ac10344cf17c2ed280ca2945bc5a (patch) | |
tree | 2c3f973330d252baeafd2708a9b638ca8488ec85 /public_html/api | |
parent | e8eaeb86f077deaffdaa0c3262284e4f540cada6 (diff) | |
download | kolab-wap-d7ca09fd4582ac10344cf17c2ed280ca2945bc5a.tar.gz |
Removed admin_ part of file/class names
Diffstat (limited to 'public_html/api')
-rw-r--r-- | public_html/api/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public_html/api/index.php b/public_html/api/index.php index 1349a1c..9633e95 100644 --- a/public_html/api/index.php +++ b/public_html/api/index.php @@ -3,7 +3,7 @@ require_once dirname(__FILE__) . "/../../lib/functions.php"; // init frontend controller -$controller = new kolab_admin_api_controller; +$controller = new kolab_api_controller; try { $postdata = $_SERVER['REQUEST_METHOD'] == 'POST' ? @json_decode(file_get_contents('php://input'), true) : null; |