Skip to content

Commit a030159

Browse files
committed
removed status column from datalog list, the column is deprecated and will be removed in future versions.
1 parent 9eff6c2 commit a030159

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

interface/web/monitor/list/datalog.list.php

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -86,16 +86,6 @@
8686
'suffix' => "%",
8787
'width' => "",
8888
'value' => "");
89-
90-
91-
$liste["item"][] = array( 'field' => "status",
92-
'datatype' => "VARCHAR",
93-
'formtype' => "SELECT",
94-
'op' => "=",
95-
'prefix' => "",
96-
'suffix' => "",
97-
'width' => "",
98-
'value' => array('pending' => "Pending",'ok' => "OK",'warning' => "Warning", 'error' => "Error"));
9989

10090

10191
?>

interface/web/monitor/templates/datalog_list.htm

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,13 @@ <h2><tmpl_var name="list_head_txt"></h2>
1111
<th class="tbl_col_server_id" scope="col"><tmpl_var name="server_id_txt"></th>
1212
<th class="tbl_col_action" scope="col"><tmpl_var name="action_txt"></th>
1313
<th class="tbl_col_dbtable" scope="col"><tmpl_var name="dbtable_txt"></th>
14-
<th class="tbl_col_status" scope="col"><tmpl_var name="status_txt"></th>
1514
<th class="tbl_col_buttons" scope="col">&nbsp;</th>
1615
</tr>
1716
<tr>
1817
<td class="tbl_col_tstamp">&nbsp;</td>
1918
<td class="tbl_col_server_id"><select name="search_server_id" onChange="submitForm('pageForm','monitor/datalog_list.php');">{tmpl_var name='search_server_id'}</select></td>
2019
<td class="tbl_col_action"><select name="search_action" onChange="submitForm('pageForm','monitor/datalog_list.php');">{tmpl_var name='search_action'}</select></td>
2120
<td class="tbl_col_dbtable"><input type="text" name="search_dbtable" value="{tmpl_var name='search_dbtable'}" /></td>
22-
<td class="tbl_col_status"><select name="search_status" onChange="submitForm('pageForm','monitor/datalog_list.php');">{tmpl_var name='search_status'}</select></td>
2321
<td class="tbl_col_buttons"><div class="buttons"><button type="button" class="icons16 icoFilter" name="Filter" id="Filter" value="{tmpl_var name="filter_txt"}" onClick="submitForm('pageForm','monitor/datalog_list.php');"><span>{tmpl_var name="filter_txt"}</span></button></div></td>
2422
</tr>
2523
</thead>
@@ -30,7 +28,6 @@ <h2><tmpl_var name="list_head_txt"></h2>
3028
<td class="tbl_col_server_id">{tmpl_var name="server_id"}</td>
3129
<td class="tbl_col_action">{tmpl_var name="action"}</td>
3230
<td class="tbl_col_dbtable">{tmpl_var name="dbtable"}</td>
33-
<td class="tbl_col_status">{tmpl_var name="status"}</td>
3431
<td class="tbl_col_buttons">
3532
<div class="buttons icons16">
3633
<!--<a class="icons16 icoDelete" href="javascript: del_record('monitor/datalog_del.php?id={tmpl_var name='id'}&phpsessid={tmpl_var name='phpsessid'}','{tmpl_var name='delete_confirmation'}');"><span>{tmpl_var name='delete_txt'}</span></a> -->
@@ -41,7 +38,7 @@ <h2><tmpl_var name="list_head_txt"></h2>
4138
</tbody>
4239
<tfoot>
4340
<tr>
44-
<td class="tbl_footer tbl_paging" colspan="6"><tmpl_var name="paging"></td>
41+
<td class="tbl_footer tbl_paging" colspan="5"><tmpl_var name="paging"></td>
4542
</tr>
4643
</tfoot>
4744
</table>

0 commit comments

Comments
 (0)