aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 ////////////////////////////////////////////////////////////////