summaryrefslogtreecommitdiffstats
path: root/system/core/Exceptions.php
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2011-08-15 00:01:37 +0200
committerPhil Sturgeon <email@philsturgeon.co.uk>2011-08-15 00:01:37 +0200
commit2369e77dcd716c772576c1f982e9446785db819d (patch)
tree461394adb4fbaf8e34e1ced0c44c8b00cabba451 /system/core/Exceptions.php
parent8ddb47df384156035de886736bb88a8848ad0149 (diff)
parentcda768a957172d5da7aa7637337405c39e0f774d (diff)
Merge pull request #51 from waldmeister/develop
Added some docs to CI core files
Diffstat (limited to 'system/core/Exceptions.php')
-rwxr-xr-xsystem/core/Exceptions.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/system/core/Exceptions.php b/system/core/Exceptions.php
index 6a63ca733..869739a5a 100755
--- a/system/core/Exceptions.php
+++ b/system/core/Exceptions.php
@@ -33,7 +33,6 @@ class CI_Exceptions {
/**
* Nesting level of the output buffering mechanism
- * Used to
*
* @var int
* @access public
@@ -98,7 +97,8 @@ class CI_Exceptions {
* 404 Page Not Found Handler
*
* @access private
- * @param string
+ * @param string the page
+ * @param bool log error yes/no
* @return string
*/
function show_404($page = '', $log_error = TRUE)
@@ -129,6 +129,7 @@ class CI_Exceptions {
* @param string the heading
* @param string the message
* @param string the template name
+ * @param int the status code
* @return string
*/
function show_error($heading, $message, $template = 'error_general', $status_code = 500)