aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-08-03 15:35:34 +0200
committerJoas Schilling <nickvergessen@gmx.de>2013-08-03 15:35:34 +0200
commit33eb9ad53aca850586abe8d896cd718181d480c0 (patch)
tree689781914f0f2c90904ef832af3d97944b7f0235 /phpBB
parentb7f97cae792af90e9192570c17d6d91fc901e9ca (diff)
parent9db1728b4b976c99f5811e578619e37c69e306cd (diff)
downloadforums-33eb9ad53aca850586abe8d896cd718181d480c0.tar
forums-33eb9ad53aca850586abe8d896cd718181d480c0.tar.gz
forums-33eb9ad53aca850586abe8d896cd718181d480c0.tar.bz2
forums-33eb9ad53aca850586abe8d896cd718181d480c0.tar.xz
forums-33eb9ad53aca850586abe8d896cd718181d480c0.zip
Merge remote-tracking branch 's9e/ticket/11762' into develop-olympus
* s9e/ticket/11762: [ticket/11762] Added call to test class's parent::setUp(). [ticket/11762] Fixed test's filename [ticket/11762] Use the === operator to distinguish "0" from ""
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/functions_content.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_content.php b/phpBB/includes/functions_content.php
index b7650ecd6a..6213d2fd24 100644
--- a/phpBB/includes/functions_content.php
+++ b/phpBB/includes/functions_content.php
@@ -413,7 +413,7 @@ function generate_text_for_display($text, $uid, $bitfield, $flags)
{
static $bbcode;
- if (!$text)
+ if ($text === '')
{
return '';
}
@@ -459,7 +459,7 @@ function generate_text_for_storage(&$text, &$uid, &$bitfield, &$flags, $allow_bb
$uid = $bitfield = '';
$flags = (($allow_bbcode) ? OPTION_FLAG_BBCODE : 0) + (($allow_smilies) ? OPTION_FLAG_SMILIES : 0) + (($allow_urls) ? OPTION_FLAG_LINKS : 0);
- if (!$text)
+ if ($text === '')
{
return;
}