From e323f6a794c742ffe0166ba223cf7de059d6c898 Mon Sep 17 00:00:00 2001 From: icewing Date: Thu, 20 Mar 2008 13:00:45 +0000 Subject: Marcus Povey * a/cvs/csv ... oops git-svn-id: https://code.elgg.org/elgg/trunk@258 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/api.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engine/lib') diff --git a/engine/lib/api.php b/engine/lib/api.php index 9c488db19..e33d0bb6d 100644 --- a/engine/lib/api.php +++ b/engine/lib/api.php @@ -841,16 +841,16 @@ END; return json_encode($result); } - function cvs_result_handler(stdClass $result) + function csv_result_handler(stdClass $result) { - throw new NotImplementedException("CVS View currently not implemented"); + throw new NotImplementedException("CSV View currently not implemented"); } // Register some format handlers register_api_outputhandler('xml', 'xml_result_handler'); register_api_outputhandler('php', 'php_result_handler'); register_api_outputhandler('json', 'json_result_handler'); - register_api_outputhandler('cvs', 'cvs_result_handler'); + register_api_outputhandler('csv', 'csv_result_handler'); // Error handler functions //////////////////////////////////////////////////////////////// -- cgit v1.2.3