aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/api.php
diff options
context:
space:
mode:
authoricewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-03-20 13:00:45 +0000
committericewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-03-20 13:00:45 +0000
commite323f6a794c742ffe0166ba223cf7de059d6c898 (patch)
tree79075274a3b9b3383c1132ee2b335079c9081887 /engine/lib/api.php
parentae5e13c17464581fa9fecb45ed846adbc69d2490 (diff)
downloadelgg-e323f6a794c742ffe0166ba223cf7de059d6c898.tar.gz
elgg-e323f6a794c742ffe0166ba223cf7de059d6c898.tar.bz2
Marcus Povey <marcus@dushka.co.uk>
* a/cvs/csv ... oops git-svn-id: https://code.elgg.org/elgg/trunk@258 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/api.php')
-rw-r--r--engine/lib/api.php6
1 files changed, 3 insertions, 3 deletions
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 ////////////////////////////////////////////////////////////////