1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

for some things we do not need the utf8 function. :)

git-svn-id: file:///svn/phpbb/trunk@6455 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2006-10-07 15:47:55 +00:00
parent 66c78d114b
commit f27edc4b5b
4 changed files with 7 additions and 21 deletions

View File

@@ -425,7 +425,7 @@ class dbal
$this->sql_transaction('rollback');
}
if (utf8_strlen($message) > 1024)
if (strlen($message) > 1024)
{
// We need to define $msg_long_text here to circumvent text stripping.
global $msg_long_text;