diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-10-07 15:47:55 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-10-07 15:47:55 +0000 |
commit | f27edc4b5beb62cd43c8c0ebe58fd4f5abeb4e53 (patch) | |
tree | 6e6c0b0e17673899d6997c365cf8d219865a8216 /phpBB/includes/db | |
parent | 66c78d114b1ea23d0d3dd55eaa2a0f55dbcd06f2 (diff) | |
download | forums-f27edc4b5beb62cd43c8c0ebe58fd4f5abeb4e53.tar forums-f27edc4b5beb62cd43c8c0ebe58fd4f5abeb4e53.tar.gz forums-f27edc4b5beb62cd43c8c0ebe58fd4f5abeb4e53.tar.bz2 forums-f27edc4b5beb62cd43c8c0ebe58fd4f5abeb4e53.tar.xz forums-f27edc4b5beb62cd43c8c0ebe58fd4f5abeb4e53.zip |
for some things we do not need the utf8 function. :)
git-svn-id: file:///svn/phpbb/trunk@6455 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/db')
-rw-r--r-- | phpBB/includes/db/dbal.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/dbal.php b/phpBB/includes/db/dbal.php index 0e16bfd10b..732ecdfed6 100644 --- a/phpBB/includes/db/dbal.php +++ b/phpBB/includes/db/dbal.php @@ -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; |