1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

chr(0x20 | 0x10) = "0"

git-svn-id: file:///svn/phpbb/trunk@6293 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M
2006-08-15 02:13:05 +00:00
parent 75ca1c9764
commit 481f090a39
3 changed files with 6 additions and 6 deletions

View File

@@ -96,10 +96,10 @@ function mcp_topic_view($id, $mode, $action)
}
$db->sql_freeresult($result);
if ($bbcode_bitfield)
if ($bbcode_bitfield !== '')
{
include_once($phpbb_root_path . 'includes/bbcode.' . $phpEx);
$bbcode = new bbcode($bbcode_bitfield);
$bbcode = new bbcode(base64_encode($bbcode_bitfield));
}
foreach ($rowset as $i => $row)