aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/index.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2007-08-18 13:52:33 +0000
committerNils Adermann <naderman@naderman.de>2007-08-18 13:52:33 +0000
commit979ee667735b091db9158d05fde8b0d337cc902b (patch)
tree8d1ab978a34aa30e601b4203164ea4038641ddb2 /phpBB/adm/index.php
parent6f6e3bba7e0da983708e97e36e2d7a57a012e44e (diff)
downloadforums-979ee667735b091db9158d05fde8b0d337cc902b.tar
forums-979ee667735b091db9158d05fde8b0d337cc902b.tar.gz
forums-979ee667735b091db9158d05fde8b0d337cc902b.tar.bz2
forums-979ee667735b091db9158d05fde8b0d337cc902b.tar.xz
forums-979ee667735b091db9158d05fde8b0d337cc902b.zip
- allow multibyte search configuration
- added ldap_user_filter to add additional restrictions on the user objects used for authentication [Bug #12627] - improved ldap explanations a bit - display searchable subforums of invisible parents in advanced search forum selection [Bug #11395] git-svn-id: file:///svn/phpbb/trunk@8047 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/index.php')
-rw-r--r--phpBB/adm/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/adm/index.php b/phpBB/adm/index.php
index f99a2f8a73..b8b83a439e 100644
--- a/phpBB/adm/index.php
+++ b/phpBB/adm/index.php
@@ -477,7 +477,7 @@ function validate_config_vars($config_vars, &$cfg_array, &$error)
$cfg_array[$config_name] = trim($cfg_array[$config_name]);
// Make sure no NUL byte is present...
- if (strpos($cfg_array[$config_name], '\0') !== false || strpos($cfg_array[$config_name], '%00') !== false)
+ if (strpos($cfg_array[$config_name], "\0") !== false || strpos($cfg_array[$config_name], '%00') !== false)
{
$cfg_array[$config_name] = '';
break;