1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-06 14:46:56 +02:00

$frm->selectbox() renamed to $frm->select(); for consistency.

This commit is contained in:
Cameron
2013-04-25 17:29:46 -07:00
parent 09d878b56a
commit 063bf2b200
25 changed files with 70 additions and 53 deletions

View File

@@ -412,7 +412,7 @@ if($action == "config")
<tbody>
<tr>
<td>".RL_LAN_044."</td>
<td>".$frm->selectbox('sys_log_perpage', array(10, 20, 30, 40, 50), $pref['sys_log_perpage'])."<span class='field-help'>".RL_LAN_064."</span></td>
<td>".$frm->select('sys_log_perpage', array(10, 20, 30, 40, 50), $pref['sys_log_perpage'])."<span class='field-help'>".RL_LAN_064."</span></td>
</tr>
";
@@ -757,7 +757,7 @@ if(isset($page_title[$action]))
case 'priority':
$text .= "
<td>".RL_LAN_058."</td>
<td>".$frm->selectbox('roll_pri_cond', array('xx' => '&nbsp;', 'gt' => '&gt;=', 'eq' => '==', 'lt' => '&lt;='), $pri_filter_cond)."
<td>".$frm->select('roll_pri_cond', array('xx' => '&nbsp;', 'gt' => '&gt;=', 'eq' => '==', 'lt' => '&lt;='), $pri_filter_cond)."
<input class='tbox' type='text' name='roll_pri_val' id='roll-pri-val' size='20' value='{$pri_filter_val}' maxlength='10' />
</td>
";