Changeset 522


Ignore:
Timestamp:
Feb 18, 2013, 11:17:37 PM (11 years ago)
Author:
chronos
Message:
  • Upraveno: Korekce zobrazení aktualit.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/action.php

    r510 r522  
    274274        '`User`.`Name` AS `User` FROM `News` JOIN `User` ON `User`.`Id`=`News`.`User` ORDER BY `News`.`Time` DESC '.$PageList['SQLLimit']);
    275275  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>';
    277277  $Output .= '</div>'.$PageList['Output'];
    278278  return($Output);
  • trunk/includes/Page.php

    r510 r522  
    204204function ShowFooter()
    205205{
    206   global $System, $ScriptStartTime, $User;
     206  global $System, $ScriptStartTime, $User, $Revision, $ReleaseTime;
    207207
    208208    $ScriptGenerateDuration = round(GetMicrotime() - $ScriptStartTime, 2);
     
    213213    $Output .= '</td>'.
    214214    '</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).')'.
    216216    ' &nbsp; <a href="http://svn.zdechov.net/trac/wowpreklad/browser/trunk">Zdrojové soubory</a> &nbsp; '.
    217217    '<a href="http://svn.zdechov.net/trac/wowpreklad/log/trunk?verbose=on">Novinky</a> &nbsp; '.
  • trunk/includes/Version.php

    r519 r522  
    11<?php
    22
    3 $Revision = 519; // Subversion revision
     3$Revision = 522; // Subversion revision
    44$DatabaseRevision = 510;
    55$ReleaseTime = '2013-02-18';
  • trunk/index.php

    r511 r522  
    1111    ' FROM `News` JOIN `User` ON `User`.`ID` = `News`.`User` ORDER BY `Time` DESC LIMIT 10');
    1212  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>'; 
    1414  $Output .= '<a href="action.php?action=news">Všechny zprávy</a>';
    1515  $Output .= '</div>';
Note: See TracChangeset for help on using the changeset viewer.