Module: nagvis Branch: master Commit: b0da52b59eae7341767088038f61fe726d0a66d2 URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis;a=commit;h=b0da52b59eae7341767088038f61fe726d0a66d2
Author: LaMi <[email protected]> Date: Fri Apr 9 20:41:55 2010 +0200 Fixed undefined var notice --- .../frontend/nagvis-js/classes/FrontendModMap.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/share/frontend/nagvis-js/classes/FrontendModMap.php b/share/frontend/nagvis-js/classes/FrontendModMap.php index 58d7b07..20c8760 100644 --- a/share/frontend/nagvis-js/classes/FrontendModMap.php +++ b/share/frontend/nagvis-js/classes/FrontendModMap.php @@ -91,7 +91,7 @@ class FrontendModMap extends FrontendModule { // Need to load the custom stylesheet? $customStylesheet = $MAPCFG->getValue('global',0, 'stylesheet'); if($customStylesheet !== '') { - $INDEX->setCustomStylesheet($CORE->getMainCfg()->getValue('paths','htmlstyles') . $customStylesheet); + $INDEX->setCustomStylesheet($this->CORE->getMainCfg()->getValue('paths','htmlstyles') . $customStylesheet); } // Header menu enabled/disabled by url? ------------------------------------------------------------------------------ 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
