aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-09-04 20:35:46 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-09-04 20:35:46 +0000
commit8ab85ebdb03105bffbd30e9ac374068a92972752 (patch)
treebec45c963c9d8c334b0180dddedb19007dbe8116 /phpBB/includes/functions.php
parent8c567e8c68a3106c94c140f732904b7b5b6eab1a (diff)
downloadforums-8ab85ebdb03105bffbd30e9ac374068a92972752.tar
forums-8ab85ebdb03105bffbd30e9ac374068a92972752.tar.gz
forums-8ab85ebdb03105bffbd30e9ac374068a92972752.tar.bz2
forums-8ab85ebdb03105bffbd30e9ac374068a92972752.tar.xz
forums-8ab85ebdb03105bffbd30e9ac374068a92972752.zip
- fix security issue in download.php
- fixing some phpdocumentor warnings/errors - adjust pop-before-smtp "auth" (nowadays no one should rely on it) - add backtrace for smtp email errors if DEBUG_EXTRA is enabled git-svn-id: file:///svn/phpbb/trunk@6352 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 0838d647e3..88cdab17d2 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -402,7 +402,7 @@ if (!function_exists('realpath'))
*/
function is_absolute($path)
{
- return ($path[0] == '/' || (substr(PHP_OS, 0, 3) == 'WIN' && preg_match('#^[a-z]:/#i', $path))) ? true : false;
+ return ($path[0] == '/' || (substr(PHP_OS, 0, 3) == 'WIN' && preg_match('#^[a-z]:/#i', $path))) ? true : false;
}
/**
@@ -3302,6 +3302,7 @@ function garbage_collection()
}
/**
+* @package phpBB3
*/
class bitfield
{