Changeset 628


Ignore:
Timestamp:
Aug 21, 2009, 5:45:13 PM (15 years ago)
Author:
george
Message:
  • Opraveno: Automatická volba aktuálně vybraného světa.
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/index.php

    r626 r628  
    1717  $_COOKIE['RealmIndex'] = $_GET['RealmIndex'];
    1818}
    19 if(!array_key_exists('RealmIndex', $_COOKIE)) $_COOKIE['RealmIndex'] = 1;
     19$RealmList = $Config['Mangos']['RealmList'];
     20$FirstRealm = array_shift($RealmList);
     21if(!array_key_exists('RealmIndex', $_COOKIE)) $_COOKIE['RealmIndex'] = $FirstRealm['Id'];
    2022  else
    2123  {
    2224    if(!array_key_exists($_COOKIE['RealmIndex'], $Config['Mangos']['RealmList']))
    23       $_COOKIE['RealmIndex'] = 1;
     25      $_COOKIE['RealmIndex'] = $FirstRealm['Id'];
    2426  }
    2527 
  • trunk/pages/links.php

    r609 r628  
    77  array('URL' => 'http://wow.vigudes.cz', 'Description' => 'České informace o WoW'),
    88  array('URL' => 'http://wow.herniweb.cz/', 'Description' => 'České informace o WoW'),
     9  array('URL' => 'http://wowcenter.cz/', 'Description' => 'Portál o hře World of Warcraft'),
    910  array('URL' => 'http://www.worldofwarcraft.com/', 'Description' => 'Oficiální stránky hry World of Warcraft'),
    1011  array('URL' => 'http://www.wow-europe.com/', 'Description' => 'Oficiální stránky hry World of Warcraft pro Evropu'),
  • trunk/pages/server.php

    r627 r628  
    6868    $Realms[] = $Config['Mangos']['RealmList'][$Realm]['Name'];
    6969   
    70   $Output .= '<table class="BaseTable" style="margin: 5px;">
     70  $Output .= '<table class="BaseTable" style="width: 100%; margin: 5px;">
    7171  <tr>
    7272    <th colspan="2">Server '.($Index + 1).'</td>
     
    9898  <tr>
    9999    <td>Světy</td>
    100     <td>'.implode(',', $Realms).'</td>
     100    <td>'.implode(', ', $Realms).'</td>
    101101  </tr>
    102102  <tr>
Note: See TracChangeset for help on using the changeset viewer.