minor fixes re: previous
This commit is contained in:
parent
b112198991
commit
9684ce5c4b
|
@ -717,7 +717,7 @@ class Pref_Filters extends Handler_Protected {
|
|||
|
||||
<div style='float : right; padding-right : 4px;'>
|
||||
<input dojoType="dijit.form.TextBox" id="filter_search" size="20" type="search"
|
||||
value="<?php echo $filter_search ?>">
|
||||
value="<?php echo htmlspecialchars($filter_search) ?>">
|
||||
<button dojoType="dijit.form.Button" onclick="dijit.byId('filterTree').reload()">
|
||||
<?php echo __('Search') ?></button>
|
||||
</div>
|
||||
|
|
|
@ -146,7 +146,7 @@ class Pref_System extends Handler_Protected {
|
|||
<td class='errstr'><?php echo $line["errstr"] . "\n" . $line["context"] ?></td>
|
||||
<td class='login'><?php echo $line["login"] ?></td>
|
||||
<td class='timestamp'>
|
||||
<?php TimeHelper::make_local_datetime($line["created_at"], false) ?>
|
||||
<?php echo TimeHelper::make_local_datetime($line["created_at"], false) ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
|
|
Loading…
Reference in New Issue