Module: nagvis Branch: master Commit: 33f4ae706d2ed35aa28248a71f8489b654b60dbf URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis;a=commit;h=33f4ae706d2ed35aa28248a71f8489b654b60dbf
Author: Lars Michelsen <[email protected]> Date: Sat Jun 5 12:56:28 2010 +0200 #306 Allowing spaces in filterGroup parameter of automap --- .../nagvis-js/classes/FrontendModAutoMap.php | 2 +- share/server/core/classes/CoreModAutoMap.php | 2 +- share/server/core/classes/CoreModGeneral.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/share/frontend/nagvis-js/classes/FrontendModAutoMap.php b/share/frontend/nagvis-js/classes/FrontendModAutoMap.php index d76aca1..6980b03 100644 --- a/share/frontend/nagvis-js/classes/FrontendModAutoMap.php +++ b/share/frontend/nagvis-js/classes/FrontendModAutoMap.php @@ -47,7 +47,7 @@ class FrontendModAutoMap extends FrontendModule { 'width' => MATCH_INTEGER_EMPTY, 'height' => MATCH_INTEGER_EMPTY, 'ignoreHosts' => MATCH_STRING_NO_SPACE_EMPTY, - 'filterGroup' => MATCH_STRING_NO_SPACE_EMPTY, + 'filterGroup' => MATCH_STRING_EMPTY, 'filterByState' => MATCH_STRING_NO_SPACE_EMPTY, 'rotation' => MATCH_ROTATION_NAME_EMPTY, 'enableHeader' => MATCH_BOOLEAN_EMPTY, diff --git a/share/server/core/classes/CoreModAutoMap.php b/share/server/core/classes/CoreModAutoMap.php index 815d105..67b69c8 100644 --- a/share/server/core/classes/CoreModAutoMap.php +++ b/share/server/core/classes/CoreModAutoMap.php @@ -43,7 +43,7 @@ class CoreModAutoMap extends CoreModule { 'width' => MATCH_INTEGER_EMPTY, 'height' => MATCH_INTEGER_EMPTY, 'ignoreHosts' => MATCH_STRING_NO_SPACE_EMPTY, - 'filterGroup' => MATCH_STRING_NO_SPACE_EMPTY, + 'filterGroup' => MATCH_STRING_EMPTY, 'filterByState' => MATCH_STRING_NO_SPACE_EMPTY); $aVals = $this->getCustomOptions($aOpts); diff --git a/share/server/core/classes/CoreModGeneral.php b/share/server/core/classes/CoreModGeneral.php index 3470cc3..47513da 100644 --- a/share/server/core/classes/CoreModGeneral.php +++ b/share/server/core/classes/CoreModGeneral.php @@ -186,7 +186,7 @@ class CoreModGeneral extends CoreModule { 'width' => MATCH_INTEGER_EMPTY, 'height' => MATCH_INTEGER_EMPTY, 'ignoreHosts' => MATCH_STRING_NO_SPACE_EMPTY, - 'filterGroup' => MATCH_STRING_NO_SPACE_EMPTY); + 'filterGroup' => MATCH_STRING_EMPTY); $aOpts = $this->getCustomOptions($aOpts); ------------------------------------------------------------------------------ ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit. See the prize list and enter to win: http://p.sf.net/sfu/thinkgeek-promo _______________________________________________ Nagvis-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagvis-checkins
