2012-05-30 Hirofumi Kosaka <kosaka@rworks.jp>
* godmode/db/db_main.php: Tiny bug fix. The number of log4x turns red when tagente_datos (not tagente_datos_log4x) is more than the threshold (max_data). git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6361 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
2a29945239
commit
6968fad2db
|
@ -1,3 +1,9 @@
|
|||
2012-05-30 Hirofumi Kosaka <kosaka@rworks.jp>
|
||||
|
||||
* godmode/db/db_main.php: Tiny bug fix. The number of log4x
|
||||
turns red when tagente_datos (not tagente_datos_log4x) is more
|
||||
than the threshold (max_data).
|
||||
|
||||
2012-05-29 Hirofumi Kosaka <kosaka@rworks.jp>
|
||||
|
||||
* include/functions_api.php: added "event_type" to the
|
||||
|
|
|
@ -123,7 +123,7 @@ echo '<tr class="rowPair"><td>';
|
|||
echo __('Total log4x items (tagente_datos_log4x)');
|
||||
echo '<td><b>';
|
||||
|
||||
if ($stat_data > $max_data)
|
||||
if ($stat_data_log4x > $max_data)
|
||||
echo "<font color='#ff0000'>$stat_data_log4x</font>";
|
||||
else
|
||||
echo $stat_data_log4x;
|
||||
|
|
Loading…
Reference in New Issue