2010-11-14 Junichi Satoh <junichi@rworks.jp>

* operation/agentes/status_monitor.php: Fixed unnecessary strings
	(a part of html entities) are shown in module name.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3581 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
jsatoh 2010-11-14 01:32:21 +00:00
parent cafe7ef8e5
commit 02f30d26c8
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-11-14 Junichi Satoh <junichi@rworks.jp>
* operation/agentes/status_monitor.php: Fixed unnecessary strings
(a part of html entities) are shown in module name.
2010-11-11 Miguel de Dios <miguel.dedios@artica.es>
* include/javascript/jquery.ui.datepicker.js,

View File

@ -262,7 +262,7 @@ foreach ($result as $row) {
$data[2] = '<img src="images/'.show_icon_type ($row["module_type"]).'" border="0" />';
$data[3] = mb_strimwidth ($row["module_name"], 0, 30);
$data[3] = mb_strimwidth (safe_output($row["module_name"]), 0, 30);
$data[4] = ($row['module_interval'] == 0) ? $row['agent_interval'] : $row['module_interval'];