diff options
| -rw-r--r-- | ChangeLog | 1 | ||||
| -rw-r--r-- | frontends/php/include/forms.inc.php | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,6 @@ Changes for 1.3.8: + - fixed "plain text" and "history of actions" for screens (Eugene) - increased server side key length up to 256 (Eugene) - fixed active check communication (Eugene) - fixed eventlog (Eugene) diff --git a/frontends/php/include/forms.inc.php b/frontends/php/include/forms.inc.php index f4044e2f..c306ff64 100644 --- a/frontends/php/include/forms.inc.php +++ b/frontends/php/include/forms.inc.php @@ -3601,12 +3601,12 @@ include_once 'include/discovery.inc.php'; } $form->AddRow(S_PARAMETER,$cmbHosts); - $form->AddRow(S_SHOW_LINES, new CElementsBox("elements",$elements,2)); + $form->AddRow(S_SHOW_LINES, new CNumericBox("elements",$elements,2)); } elseif($resourcetype == SCREEN_RESOURCE_ACTIONS) { // History of actions - $form->AddRow(S_SHOW_LINES, new CElementsBox("elements",$elements,2)); + $form->AddRow(S_SHOW_LINES, new CNumericBox("elements",$elements,2)); $form->AddVar("resourceid",0); } elseif($resourcetype == SCREEN_RESOURCE_EVENTS) |
