Changeset 854 for trunk/Modules/ShoutBox/ShoutBox.php
- Timestamp:
- Jan 19, 2016, 5:25:11 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/ShoutBox/ShoutBox.php
r851 r854 30 30 31 31 if($this->System->User->Licence(LICENCE_USER)) 32 $Output .= ' 33 $Output .= '<div class="box">< table>';32 $Output .= '<a href="'.$this->System->Link('/shoutbox/?a=add').'">'.T('Add').'</a>'; 33 $Output .= '<div class="box"><div class="shoutbox"><table>'; 34 34 $DbResult = $this->Database->query('SELECT * FROM `ShoutBox` ORDER BY `ID` DESC LIMIT 30'); 35 35 while($Line = $DbResult->fetch_assoc()) 36 36 $Output .= '<tr><td><strong>'.$Line['UserName'].'</strong>: '.MakeActiveLinks($Line['Text']).'</td></tr>'; 37 $Output .= '</table></div> ';37 $Output .= '</table></div></div>'; 38 38 return($Output); 39 39 }
Note:
See TracChangeset
for help on using the changeset viewer.