* set default value in flow list.

This commit is contained in:
wangyidong
2012-12-02 02:28:23 +00:00
parent ef8f35fe9f
commit 4a66546239
+8 -8
View File
@@ -16,14 +16,14 @@
<caption><?php echo $lang->index->selectFlow?></caption>
<tr>
<td>
<?php
foreach($lang->index->flowList as $type => $name)
{
$checked = $type == 'all' ? "checked='checked'" : '';
echo "<p><input type='radio' name='flow' value='$type' $checked> $name</p>";
}
?>
</td>
<?php
foreach($lang->index->flowList as $type => $name)
{
$checked = $type == 'full' ? "checked='checked'" : '';
echo "<p><input type='radio' name='flow' value='$type' $checked> $name</p>";
}
?>
</td>
</tr>
<tr>
<td><?php echo html::submitButton()?></td>