Module: nagvis Branch: master Commit: fe25e28055f544319f8c024fb3bba4d6032e951b URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis;a=commit;h=fe25e28055f544319f8c024fb3bba4d6032e951b
Author: LaMi <[email protected]> Date: Sat Apr 10 00:27:47 2010 +0200 Fixed problems in wui which were introduced during latest changes --- share/server/core/classes/WuiMapCfg.php | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/share/server/core/classes/WuiMapCfg.php b/share/server/core/classes/WuiMapCfg.php index 8dd0747..eb80db6 100644 --- a/share/server/core/classes/WuiMapCfg.php +++ b/share/server/core/classes/WuiMapCfg.php @@ -65,7 +65,7 @@ class WuiMapCfg extends GlobalMapCfg { * @author Lars Michelsen <[email protected]> */ function getValidObjectType($type) { - return $this->validConfig[$type]; + return self::$validConfig[$type]; } /** @@ -75,7 +75,7 @@ class WuiMapCfg extends GlobalMapCfg { * @author Lars Michelsen <[email protected]> */ function getValidConfig() { - return $this->validConfig; + return self::$validConfig; } /** ------------------------------------------------------------------------------ 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
