Module: nagvis Branch: master Commit: ed5eba7be2a366b1a96830319ff08e67a068eade URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis;a=commit;h=ed5eba7be2a366b1a96830319ff08e67a068eade
Author: LaMi <[email protected]> Date: Tue Mar 30 23:53:36 2010 +0200 #234 Allowing objectnames with spaces in ajax state refresh again --- share/server/core/classes/CoreModAutoMap.php | 4 ++-- share/server/core/classes/CoreModGeneral.php | 4 ++-- share/server/core/classes/CoreModMap.php | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/share/server/core/classes/CoreModAutoMap.php b/share/server/core/classes/CoreModAutoMap.php index 484c382..08b57b4 100644 --- a/share/server/core/classes/CoreModAutoMap.php +++ b/share/server/core/classes/CoreModAutoMap.php @@ -181,8 +181,8 @@ class CoreModAutoMap extends CoreModule { $aOpts = Array('ty' => MATCH_GET_OBJECT_TYPE, 't' => MATCH_OBJECT_TYPES, - 'n1' => MATCH_STRING_NO_SPACE, - 'n2' => MATCH_STRING_NO_SPACE_EMPTY, + 'n1' => MATCH_STRING, + 'n2' => MATCH_STRING_EMPTY, 'i' => MATCH_STRING_NO_SPACE); $aVals = $this->getCustomOptions($aOpts); diff --git a/share/server/core/classes/CoreModGeneral.php b/share/server/core/classes/CoreModGeneral.php index f72680d..18a11c4 100644 --- a/share/server/core/classes/CoreModGeneral.php +++ b/share/server/core/classes/CoreModGeneral.php @@ -157,8 +157,8 @@ class CoreModGeneral extends CoreModule { $aOpts = Array('ty' => MATCH_GET_OBJECT_TYPE, 't' => MATCH_OBJECT_TYPES, - 'n1' => MATCH_STRING_NO_SPACE, - 'n2' => MATCH_STRING_NO_SPACE_EMPTY, + 'n1' => MATCH_STRING, + 'n2' => MATCH_STRING_EMPTY, 'i' => MATCH_STRING_NO_SPACE); $aVals = $this->getCustomOptions($aOpts); diff --git a/share/server/core/classes/CoreModMap.php b/share/server/core/classes/CoreModMap.php index 035c844..7a8e1b8 100644 --- a/share/server/core/classes/CoreModMap.php +++ b/share/server/core/classes/CoreModMap.php @@ -938,7 +938,7 @@ class CoreModMap extends CoreModule { $aOpts = Array('ty' => MATCH_GET_OBJECT_TYPE, 't' => MATCH_OBJECT_TYPES, - 'n1' => MATCH_STRING_NO_SPACE, + 'n1' => MATCH_STRING, 'n2' => MATCH_STRING_EMPTY, 'i' => MATCH_STRING_NO_SPACE); ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Nagvis-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/nagvis-checkins
