diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2006-11-19 21:00:48 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-11-19 21:00:48 +0000 |
| commit | 6a082426840164a3c8187559dddf3ab777b958fa (patch) | |
| tree | fd38a30c9f893e71cdb9c5cec3a972036ef53131 /phpBB/includes/functions.php | |
| parent | f78289033236a4c108aae5ad8315c60e5f7dc19b (diff) | |
| download | forums-6a082426840164a3c8187559dddf3ab777b958fa.tar forums-6a082426840164a3c8187559dddf3ab777b958fa.tar.gz forums-6a082426840164a3c8187559dddf3ab777b958fa.tar.bz2 forums-6a082426840164a3c8187559dddf3ab777b958fa.tar.xz forums-6a082426840164a3c8187559dddf3ab777b958fa.zip | |
some tiny fixes.
git-svn-id: file:///svn/phpbb/trunk@6614 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
| -rw-r--r-- | phpBB/includes/functions.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 467727a9bc..d350ab3bb3 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -502,7 +502,7 @@ if (!function_exists('realpath')) else if (isset($_SERVER['SCRIPT_FILENAME']) && !empty($_SERVER['SCRIPT_FILENAME'])) { // Warning: If chdir() has been used this will lie! - // @todo This has some problems sometime (CLI can create them easily) + // Warning: This has some problems sometime (CLI can create them easily) $path = str_replace(DIRECTORY_SEPARATOR, '/', dirname($_SERVER['SCRIPT_FILENAME'])) . '/' . $path; $absolute = true; $path_prefix = ''; @@ -2907,9 +2907,6 @@ function msg_handler($errno, $msg_text, $errfile, $errline) return; } - /** - * @todo Think about removing the if-condition within the final product, since we no longer enable DEBUG by default and we will maybe adjust the error reporting level - */ if (defined('DEBUG')) { if (strpos($errfile, 'cache') === false && strpos($errfile, 'template.') === false) |
