Changeset 522
- Timestamp:
- Feb 18, 2013, 11:17:37 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/action.php
r510 r522 274 274 '`User`.`Name` AS `User` FROM `News` JOIN `User` ON `User`.`Id`=`News`.`User` ORDER BY `News`.`Time` DESC '.$PageList['SQLLimit']); 275 275 while($Line = $DbResult->fetch_assoc()) 276 $Output .= '<div><strong>'.$Line['Title'].' ('.HumanDate($Line['Time']).')</strong> '.$Line['Text'].' ('.$Line['User'].')</div>';276 $Output .= '<div><strong>'.$Line['Title'].' ('.HumanDate($Line['Time']).')</strong><br/> '.$Line['Text'].' ('.$Line['User'].')</div>'; 277 277 $Output .= '</div>'.$PageList['Output']; 278 278 return($Output); -
trunk/includes/Page.php
r510 r522 204 204 function ShowFooter() 205 205 { 206 global $System, $ScriptStartTime, $User ;206 global $System, $ScriptStartTime, $User, $Revision, $ReleaseTime; 207 207 208 208 $ScriptGenerateDuration = round(GetMicrotime() - $ScriptStartTime, 2); … … 213 213 $Output .= '</td>'. 214 214 '</tr><tr>'. 215 '<td colspan="4" class="page-bottom"> Autoři: '.$System->Config['Web']['Authors'].215 '<td colspan="4" class="page-bottom">Verze: '.$Revision.' ('.HumanDate($ReleaseTime).')'. 216 216 ' <a href="http://svn.zdechov.net/trac/wowpreklad/browser/trunk">Zdrojové soubory</a> '. 217 217 '<a href="http://svn.zdechov.net/trac/wowpreklad/log/trunk?verbose=on">Novinky</a> '. -
trunk/includes/Version.php
r519 r522 1 1 <?php 2 2 3 $Revision = 5 19; // Subversion revision3 $Revision = 522; // Subversion revision 4 4 $DatabaseRevision = 510; 5 5 $ReleaseTime = '2013-02-18'; -
trunk/index.php
r511 r522 11 11 ' FROM `News` JOIN `User` ON `User`.`ID` = `News`.`User` ORDER BY `Time` DESC LIMIT 10'); 12 12 while($DbRow = $DbResult->fetch_assoc()) 13 $Output .= '<div><strong>'.$DbRow['Title'].' ('.HumanDate($DbRow['Time']).')</strong> <br />'.$DbRow['Text'].' </div>';13 $Output .= '<div><strong>'.$DbRow['Title'].' ('.HumanDate($DbRow['Time']).')</strong> <br />'.$DbRow['Text'].' ('.$DbRow['Name'].')</div>'; 14 14 $Output .= '<a href="action.php?action=news">Všechny zprávy</a>'; 15 15 $Output .= '</div>';
Note:
See TracChangeset
for help on using the changeset viewer.