Module: nagvis Branch: master Commit: 634533fc4f7d2d8da51f3ed2878a33850fce56b6 URL: http://nagvis.git.sourceforge.net/git/gitweb.cgi?p=nagvis/nagvis;a=commit;h=634533fc4f7d2d8da51f3ed2878a33850fce56b6
Author: LaMi <[email protected]> Date: Thu Apr 1 14:45:04 2010 +0200 Fixed automap label on overview page --- share/frontend/nagvis-js/js/frontend.js | 2 +- share/server/core/classes/GlobalIndexPage.php | 1 + 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/share/frontend/nagvis-js/js/frontend.js b/share/frontend/nagvis-js/js/frontend.js index 232dcd5..b4ed1aa 100644 --- a/share/frontend/nagvis-js/js/frontend.js +++ b/share/frontend/nagvis-js/js/frontend.js @@ -1126,7 +1126,7 @@ function parseOverviewPage() { oTh = document.createElement('th'); oTh.colSpan = oPageProperties.cellsperrow; - oTh.appendChild(document.createTextNode(oPageProperties.lang_mapIndex)); + oTh.appendChild(document.createTextNode(oPageProperties.lang_automapIndex)); oTr.appendChild(oTh); oTh = null; diff --git a/share/server/core/classes/GlobalIndexPage.php b/share/server/core/classes/GlobalIndexPage.php index ac75f7a..6f27e47 100644 --- a/share/server/core/classes/GlobalIndexPage.php +++ b/share/server/core/classes/GlobalIndexPage.php @@ -315,6 +315,7 @@ class GlobalIndexPage { $arr['background_color'] = $this->CORE->getMainCfg()->getValue('index','backgroundcolor'); $arr['lang_mapIndex'] = $this->CORE->getLang()->getText('mapIndex'); + $arr['lang_automapIndex'] = $this->CORE->getLang()->getText('Automap Index'); $arr['lang_rotationPools'] = $this->CORE->getLang()->getText('rotationPools'); $arr['event_log'] = $this->CORE->getMainCfg()->getValue('defaults', 'eventlog'); ------------------------------------------------------------------------------ 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
