1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-20 20:51:53 +02:00

Fixes #514 - _blank theme config

This commit is contained in:
Moc 2014-05-18 16:16:01 +02:00
parent b32b7eed05
commit bfec4b1a41

View File

@ -11,7 +11,7 @@ class theme__blank implements e_theme_config
$theme_pref = array();
$theme_pref['example'] = $_POST['_blank_example'];
$theme_pref['example2'] = intval($_POST['_blank_example2']);
$theme_pref['example2'] = intval($_POST['_blank_example2']);
$pref->set('sitetheme_pref', $theme_pref);
return $pref->dataHasChanged();
@ -19,13 +19,13 @@ class theme__blank implements e_theme_config
function config()
{
$tp = e107::getParser();
$frm = e107::getForm();
$var[0]['caption'] = "Sample configuration field";
$var[0]['html'] = $tp->text('_blank_example', e107::getThemePref('example', 'default'));
$var[0]['html'] = $frm->text('_blank_example', e107::getThemePref('example', 'default'));
$var[1]['caption'] = "Sample configuration field";
$var[1]['html'] = $tp->text('_blank_example2', e107::getThemePref('example2', 'default'));
$var[1]['caption'] = "Sample configuration field2";
$var[1]['html'] = $frm->text('_blank_example2', e107::getThemePref('example2', 'default'));
return $var;
}