Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
Host search not saved when activate/desactivate a host
Browse files Browse the repository at this point in the history
  • Loading branch information
lpinsivy authored and loiclau committed Nov 27, 2017
1 parent b76dc49 commit e6b60de
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion www/include/configuration/configObject/host/listHost.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@

if (isset($_POST["searchH"])) {
$search = $_POST["searchH"];
$_POST["search"] = $_POST["searchH"];
$centreon->historySearch[$url] = $search;
} elseif (isset($_GET["searchH"])) {
$search = $_GET["searchH"];
$centreon->historySearch[$url] = $search;
} elseif (isset($centreon->historySearch[$url])) {
$search = $centreon->historySearch[$url];
Expand Down

0 comments on commit e6b60de

Please sign in to comment.