1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-24 23:16:28 +02:00

Social Links added - work in progress.

This commit is contained in:
Cameron
2013-03-10 04:42:18 -07:00
parent 3d38579351
commit 959d5064e9
2 changed files with 42 additions and 5 deletions

View File

@@ -1119,11 +1119,14 @@ class e_form
$text[] = $this->radio($name, $value, (string) $checked === (string) $value)."".$this->label($label, $name, $value).(isset($helpLabel) ? "<div class='field-help'>".$helpLabel."</div>" : '');
}
if(!$multi_line)
if($multi_line === false)
{
return implode("&nbsp;&nbsp;", $text);
}
// return implode("\n", $text);
return "<div class='field-spacer'>".implode("</div><div class='field-spacer'>", $text)."</div>";
return "<div class='field-spacer' style='width:50%;float:left'>".implode("</div><div class='field-spacer' style='width:50%;float:left'>", $text)."</div>";
}