diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-12-12 11:07:07 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-12-12 11:07:07 +0000 |
commit | feb92bf1490def6bc63e76d79b555b4480628aea (patch) | |
tree | bb391959109426aef91e6fcaf1f96fe789920fd5 | |
parent | 6f97a529a49f7c83717c4678687e04144158146d (diff) | |
download | forums-feb92bf1490def6bc63e76d79b555b4480628aea.tar forums-feb92bf1490def6bc63e76d79b555b4480628aea.tar.gz forums-feb92bf1490def6bc63e76d79b555b4480628aea.tar.bz2 forums-feb92bf1490def6bc63e76d79b555b4480628aea.tar.xz forums-feb92bf1490def6bc63e76d79b555b4480628aea.zip |
wrong call - utf8_clean_string() instead of utf_clean_string() :)
git-svn-id: file:///svn/phpbb/trunk@8275 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index 9361a2292b..1236361e18 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -520,7 +520,7 @@ if ($save && $user->data['is_registered'] && $auth->acl_get('u_savedrafts') && ( } else { - if (!$subject || !utf_clean_string($subject)) + if (!$subject || !utf8_clean_string($subject)) { $error[] = $user->lang['EMPTY_SUBJECT']; } |