From: cash Date: Sun, 21 Feb 2010 17:30:29 +0000 (+0000) Subject: Apache's MultiViews was matching the rest page handler incorrectly X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=5e28de6ea706ad1bd89b744311e1291f8354f73e;p=lorea%2Felgg.git Apache's MultiViews was matching the rest page handler incorrectly git-svn-id: http://code.elgg.org/elgg/trunk@3958 36083f99-b078-4883-b0ff-0f9b5a30f544 --- diff --git a/engine/lib/api.php b/engine/lib/api.php index d123ff360..6b773138e 100644 --- a/engine/lib/api.php +++ b/engine/lib/api.php @@ -1518,7 +1518,7 @@ function unregister_service_handler($handler) { function rest_handler() { global $CONFIG; - require $CONFIG->path . "services/api/rest.php"; + require $CONFIG->path . "services/api/rest_api.php"; } // Initialisation ///////////////////////////////////////////////////////////// diff --git a/services/api/rest.php b/services/api/rest_api.php similarity index 100% rename from services/api/rest.php rename to services/api/rest_api.php