1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-13 20:28:44 +01:00

late fix for #45135

git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9514 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Henry Sudhof 2009-05-13 10:19:43 +00:00
parent 7e0f5c0b7c
commit ddb5a5f146

View File

@ -3221,7 +3221,7 @@ parse_css_file = {PARSE_CSS_FILE}
{
if ($mode === 'template')
{
$select_bf = ', template_bitfield';
$select_bf = ', bbcode_bitfield';
}
else
{
@ -3243,7 +3243,7 @@ parse_css_file = {PARSE_CSS_FILE}
{
$inherit_id = $row["{$mode}_id"];
$inherit_path = $row["{$mode}_path"];
$inherit_bf = ($mode === 'template') ? $row["{$mode}_bitfield"] : false;
$inherit_bf = ($mode === 'template') ? $row["bbcode_bitfield"] : false;
$cfg_data['store_db'] = $row["{$mode}_storedb"];
$store_db = $row["{$mode}_storedb"];
}