1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 03:40:37 +02:00

Minor UI and form fixes to chatbox admin

This commit is contained in:
Moc
2013-03-26 00:26:14 +01:00
parent 2074ef8f37
commit 661679ca85

View File

@@ -91,7 +91,7 @@ if(!isset($pref['cb_mod']))
$text = " $text = "
<form method='post' action='".e_SELF."' id='cbform' > <form method='post' action='".e_SELF."' id='cbform' >
<table class='table adminform'> <table class='table adminform'>
<colgroup span='2'> <colgroup>
<col class='col-label' /> <col class='col-label' />
<col class='col-control' /> <col class='col-control' />
</colgroup> </colgroup>
@@ -105,7 +105,7 @@ $text = "
</tr> </tr>
<tr> <tr>
<td>".CHBLAN_36."</td> <td>".CHBLAN_36."</td>
<td>".$frm->radio('cb_layer', array(0 => CHBLAN_37, 1 => str_replace("[x]", $frm->text('cb_layer_height', $pref['cb_layer_height'], 3), CHBLAN_29), 2 => CHBLAN_38), $pref['cb_layer'], true)."</td> <td>".$frm->radio('cb_layer', array(0 => CHBLAN_37, 1 => str_replace("[x]", $frm->number('cb_layer_height', $pref['cb_layer_height'], 3), CHBLAN_29), 2 => CHBLAN_38), $pref['cb_layer'], array('sep' => '<br />'))."</td>
</tr> </tr>
"; ";
@@ -113,7 +113,7 @@ $text = "
{ {
$text .= "<tr> $text .= "<tr>
<td>".CHBLAN_31."?: </td> <td>".CHBLAN_31."?: </td>
<td>".$frm->checkbox('cb_emote', 1, varset($pref['cb_emote'],0))."</td> <td>".$frm->radio_switch('cb_emote', $pref['cb_emote'])."</td>
</tr>"; </tr>";
} }