1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-25 04:23:38 +01:00

add missing $super assignment - Bug #43635

git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9458 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen 2009-04-17 14:58:16 +00:00
parent 18b565e8cd
commit b1597679c2

View File

@ -746,7 +746,7 @@ parse_css_file = {PARSE_CSS_FILE}
// If it's not stored in the db yet, then update the template setting and store all template files in the db // If it's not stored in the db yet, then update the template setting and store all template files in the db
if (!$template_info['template_storedb']) if (!$template_info['template_storedb'])
{ {
if ($this->get_super('template', $template_id)) if ($super = $this->get_super('template', $template_id))
{ {
$this->store_in_db('template', $super['template_id']); $this->store_in_db('template', $super['template_id']);
} }
@ -3227,7 +3227,7 @@ parse_css_file = {PARSE_CSS_FILE}
{ {
$select_bf = ''; $select_bf = '';
} }
$sql = "SELECT {$mode}_id, {$mode}_name, {$mode}_path, {$mode}_storedb $select_bf $sql = "SELECT {$mode}_id, {$mode}_name, {$mode}_path, {$mode}_storedb $select_bf
FROM $sql_from FROM $sql_from
WHERE {$mode}_name = '" . $db->sql_escape($cfg_data['inherit_from']) . "' WHERE {$mode}_name = '" . $db->sql_escape($cfg_data['inherit_from']) . "'