1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-16 05:54:44 +01:00
git-svn-id: file:///svn/phpbb/trunk@7700 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M 2007-05-31 03:14:05 +00:00
parent 32c9152b8f
commit c0bb650c58
2 changed files with 2 additions and 2 deletions

View File

@ -231,7 +231,7 @@ p a {
<li>Limit maximum number of allowed characters in messages to 60.000 by default. Admins should increase their PHP time limits if they want to raise this tremedously.</li>
<li>Some changes to the conversion documentation</li>
<li>[Fix] Only use permissions from existing forums during the conversion (Bug #11417)</li>
<li>[Fix] Do not permit the decimal as a valid prefix character (Bug #11967)</li>
</ul>
</div>

View File

@ -280,7 +280,7 @@ function connect_check_db($error_connect, &$error, $dbms, $table_prefix, $dbhost
{
case 'mysql':
case 'mysqli':
if (strpos($table_prefix, '-') !== false)
if (strpos($table_prefix, '-') !== false || strpos($table_prefix, '.') !== false)
{
$error[] = $lang['INST_ERR_PREFIX_INVALID'];
return false;