theme update

This commit is contained in:
Savetheinternet 2011-04-17 01:28:25 +10:00
parent 21d97bab29
commit e47279b3f0
3 changed files with 28 additions and 6 deletions

View file

@ -286,7 +286,7 @@
// Check if everything is submitted
foreach($theme['config'] as &$c) {
if(!isset($_POST[$c['name']]) && $c['type'] != 'checkbox')
error(spritnf($config['error']['required'], $c['title']));
error(sprintf($config['error']['required'], $c['title']));
}
// Clear previous settings
@ -327,6 +327,8 @@
default:
$body .= '<input type="text" name="' . $c['name'] . '" />';
}
if(isset($c['comment']))
$body .= ' <span class="unimportant">' . $c['comment'] . '</span>';
$body .= '</td></tr>';
}
$body .= '</table>';