Changeset 307 for minimanager/events.php
- Timestamp:
- Mar 13, 2008, 8:18:42 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
minimanager/events.php
r304 r307 26 26 $dir = ($dir) ? 0 : 1; 27 27 28 $result = $sql->query("SELECT `description`, `start `, `end`, `occurence`, `length` FROM `game_event` WHERE `start` <> `end` ORDER BY $order_by $order_dir");28 $result = $sql->query("SELECT `description`, `start_time`, `end_time`, `occurence`, `length` FROM `game_event` WHERE `start_time` <> `end_time` ORDER BY $order_by $order_dir"); 29 29 $total_found = $sql->num_rows($result); 30 30 … … 38 38 <tr> 39 39 <th width=\"35%\"><a href=\"events.php?order_by=description&start=$start&dir=$dir\">".($order_by=='description' ? "<img src=\"img/arr_".($dir ? "up" : "dw").".gif\" /> " : "")."{$lang_events['descr']}</a></th> 40 <th width=\"25%\"><a href=\"events.php?order_by=start &start=$start&dir=$dir\">".($order_by=='start' ? "<img src=\"img/arr_".($dir ? "up" : "dw").".gif\" /> " : "")."{$lang_events['start']}</a></th>40 <th width=\"25%\"><a href=\"events.php?order_by=start_time&start=$start&dir=$dir\">".($order_by=='start' ? "<img src=\"img/arr_".($dir ? "up" : "dw").".gif\" /> " : "")."{$lang_events['start']}</a></th> 41 41 <th width=\"20%\"><a href=\"events.php?order_by=occurence&start=$start&dir=$dir\">".($order_by=='occurence' ? "<img src=\"img/arr_".($dir ? "up" : "dw").".gif\" /> " : "")."{$lang_events['occur']}</a></th> 42 42 <th width=\"20%\"><a href=\"events.php?order_by=length&start=$start&dir=$dir\">".($order_by=='length' ? "<img src=\"img/arr_".($dir ? "up" : "dw").".gif\" /> " : "")."{$lang_events['length']}</a></th> … … 72 72 $output .= "<tr valign=top> 73 73 <td align=left>$events[description]</td> 74 <td>".$events['start ']."</td>74 <td>".$events['start_time']."</td> 75 75 <td>$event_occurance</td> 76 76 <td>$event_duration</td>
Note:
See TracChangeset
for help on using the changeset viewer.