diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-08-15 00:01:37 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-08-15 00:01:37 +0200 |
commit | 2369e77dcd716c772576c1f982e9446785db819d (patch) | |
tree | 461394adb4fbaf8e34e1ced0c44c8b00cabba451 /system/core/Exceptions.php | |
parent | 8ddb47df384156035de886736bb88a8848ad0149 (diff) | |
parent | cda768a957172d5da7aa7637337405c39e0f774d (diff) |
Merge pull request #51 from waldmeister/develop
Added some docs to CI core files
Diffstat (limited to 'system/core/Exceptions.php')
-rwxr-xr-x | system/core/Exceptions.php | 5 |
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) |