Changeset 622 for trunk/Modules/ShoutBox/ShoutBox.php
- Timestamp:
- Dec 4, 2013, 9:20:56 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/ShoutBox/ShoutBox.php
r581 r622 24 24 function ShowBox() 25 25 { 26 $Output = '<strong><a href="'.$this->System->Link('/shoutbox/').'"> Kecátko:</a></strong>';26 $Output = '<strong><a href="'.$this->System->Link('/shoutbox/').'">'.T('Chatbox').':</a></strong>'; 27 27 28 28 if($this->System->User->Licence(LICENCE_USER)) 29 $Output .= ' <a href="'.$this->System->Link('/shoutbox/?a=add').'"> Vložit</a>';29 $Output .= ' <a href="'.$this->System->Link('/shoutbox/?a=add').'">'.T('Add').'</a>'; 30 30 $Output .= '<div class="box"><table>'; 31 31 $DbResult = $this->Database->query('SELECT * FROM `ShoutBox` ORDER BY `ID` DESC LIMIT 30'); … … 58 58 $Output = '<h3>Kecátko</h3>'.$PageList['Output']; 59 59 if($this->System->User->Licence(LICENCE_USER)) 60 $Output .= ' <a href="'.$this->System->Link('/shoutbox/?a=add').'"> Vložit</a>';60 $Output .= ' <a href="'.$this->System->Link('/shoutbox/?a=add').'">'.T('Add').'</a>'; 61 61 $Output .= '<div class="shoutbox">'; 62 62 $DbResult = $this->System->Database->query('SELECT * FROM `ShoutBox` ORDER BY `ID` DESC '.$PageList['SQLLimit']);
Note:
See TracChangeset
for help on using the changeset viewer.