2011-04-11 Javier Lanz <javier.lanz@artica.es>

* godmode/reporting/reporting_builder.item_editor.php: The SLA elements
	are listed again with labels instead with input texts.


git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4184 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
javilanz 2011-04-11 16:31:43 +00:00
parent 1d24bb865e
commit 79f39a336f
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2011-04-11 Javier Lanz <javier.lanz@artica.es>
* godmode/reporting/reporting_builder.item_editor.php: The SLA elements
are listed again with labels instead with input texts.
2011-04-11 Javier Lanz <javier.lanz@artica.es>
* include/functions_reporting.php: Fixed a typo error

View File

@ -553,9 +553,9 @@ function print_SLA_list($width, $action, $idItem = null) {
echo '<tr id="sla_' . $item['id'] . '" style="" class="datos">
<td>' . printTruncateText($nameAgent, 20) . '</td>
<td>' . printTruncateText($nameModule, 20) . '</td>
<td>' . print_input_text('input_min', $item['sla_min'], '', 15, 255, true) . '</td>
<td>' . print_input_text('input_max', $item['sla_max'], '', 15, 255, true) . '</td>
<td>' . print_input_text('input_limit', $item['sla_limit'], '', 10, 255, true) . '</td>
<td>' . $item['sla_min'] . '</td>
<td>' . $item['sla_max'] . '</td>
<td>' . $item['sla_limit'] . '</td>
<td style="text-align: center;">
<a href="javascript: deleteSLARow(' . $item['id'] . ');">' . print_image("images/cross.png", true) . '</a>
</td>