[BUG-FIX] fix some non critical bugs for 1.8ver

    This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

    • [BUG-FIX] fix some non critical bugs for 1.8ver

      in AbstractGamePage.class.php getNavigationData func find

      PHP Source Code: AbstractGamePage.class.php

      1. if(isset($USER['PLANETS'])) {
      2. $USER['PLANETS'] = getPlanets($USER);
      3. }




      change to

      PHP Source Code: AbstractGamePage.class.php

      1. if(!isset($USER['PLANETS'])) {
      2. $USER['PLANETS'] = getPlanets($USER);
      3. }
      in ShowErrorPage.class.php

      PHP Source Code: ShowErrorPage.class.php

      1. function __construct()
      2. {
      3. parent::__construct();
      4. $this->initTemplate();
      5. }


      change to

      PHP Source Code: ShowErrorPage.class.php

      1. function __construct()
      2. {
      3. parent::__construct();
      4. $this->setWindow('popup');
      5. $this->initTemplate();
      6. }