Changeset 172 for events.php


Ignore:
Timestamp:
Dec 12, 2007, 1:50:35 PM (17 years ago)
Author:
george
Message:

Opraveno: Chyba při zobrazování prázdného seznamu aktuálních eventů.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • events.php

    r171 r172  
    3434{
    3535  global $Database, $EventsLinks;
    36   $Events = array();
     36  $Events = array('Running' => array(), 'Planned' => array());
    3737  $Database->select_db('mangos');
    3838 
     
    8181ShowHeader();
    8282
    83 echo('<h3>Události ve høe:</h3><div align="center">');
     83echo('<h3>Ud�losti ve h�e:</h3><div align="center">');
    8484
    8585$Events = Events();
    8686echo('<table class="TableGuilda" border="1" cellpadding="3" cellspacing="0">');
    87 echo('<tr><th>Název</th><th>Zaèátek</th><th>Konec</th><th>Informace</th><th>Informace</th></tr>');
    88 echo('<tr><td colspan="5"><strong style="color: yellow;">Aktuálnì bì¾ící akce</strong></td></tr>');
     87echo('<tr><th>N�zev</th><th>Za��tek</th><th>Konec</th><th>Informace</th><th>Informace</th></tr>');
     88echo('<tr><td colspan="5"><strong style="color: yellow;">Aktu�ln� b���c� akce</strong></td></tr>');
    8989ShowEventList($Events['Running']);
    90 echo('<tr><td colspan="5"><strong style="color: yellow;">Plánované akce</strong></td></tr>');
     90echo('<tr><td colspan="5"><strong style="color: yellow;">Pl�novan� akce</strong></td></tr>');
    9191ShowEventList($Events['Planned']);
    9292echo('</table></div>');
Note: See TracChangeset for help on using the changeset viewer.