Changeset 507 for trunk/log.php
- Timestamp:
- Feb 15, 2013, 10:12:08 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/log.php
r504 r507 27 27 $Output .= GenerateRSS(array 28 28 ( 29 'Title' => 'WoWpřeklad',29 'Title' => $Config['Web']['Title'], 30 30 'Link' => 'http://'.$Config['Web']['Host'].$System->Link('/'), 31 31 'Description' => $Config['Web']['Title'], … … 44 44 else $WhereType = '1=1'; 45 45 46 $RSSChannels = array(array('Title' => 'Záznamy změn', 'URL' => 'log.php?rss&type='.$_SESSION['type'])); 46 $RSSChannels = array( 47 array('Title' => 'Záznamy změn', 'Channel' => 'log&type='.$_SESSION['type']) 48 ); 47 49 48 50 if($User->Licence(LICENCE_MODERATOR)) … … 88 90 while($Line = $DbResult->fetch_assoc()) 89 91 { 90 $Output .= '<tr><td>'.$Line['Date'].'</td><td><span style="color: '.$Line['LogColor'].'">'.$Line['Text'].'</span></td><td>'.$Line['UserName'].'</td><td>'.$Line['IP'].'</td></tr>';92 //$Output .= '<tr><td>'.$Line['Date'].'</td><td><span style="color: '.$Line['LogColor'].'">'.$Line['Text'].'</span></td><td>'.$Line['UserName'].'</td><td>'.$Line['IP'].'</td></tr>'; 91 93 } 92 94 $Output .= '</table>'.
Note:
See TracChangeset
for help on using the changeset viewer.