1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-21 13:11:52 +02:00

Form Handler/Admin UI - more multilingual support

This commit is contained in:
secretr 2010-02-11 16:43:34 +00:00
parent 0dfbbb0c1d
commit 967ef712c2

View File

@ -859,9 +859,10 @@ class e_form
if (!varset($fld['forced']) && !vartrue($fld['nolist']) && vartrue($fld['type'])!='upload')
{
$checked = (in_array($key,$columnsDefault)) ? TRUE : FALSE;
$ttl = isset($fld['title']) ? defset($fld['title'], $fld['title']) : $key;
$text .= "
<div class='field-spacer'>
".$this->checkbox_label(varset($fld['title'], $key), 'e-columns[]', $key, $checked)."
".$this->checkbox_label($ttl, 'e-columns[]', $key, $checked)."
</div>
";
}