Changeset 762


Ignore:
Timestamp:
Jan 24, 2014, 12:05:59 PM (11 years ago)
Author:
maron
Message:
  • Fixed: bad align in thread name
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Forum/Forum.php

    r761 r762  
    146146                $DbResult = $this->System->Database->query('SELECT * FROM `ForumThread`  WHERE 1 ORDER BY `ID` DESC '.$PageList['SQLLimit']);
    147147                while($Line = $DbResult->fetch_assoc())
    148                         $Output .= '<div><a href="?Thread='.$Line['ID'].'">'.str_replace("\n", '',$Line['Text']).'</a> <span style="float:right;"><strong>'.$Line['UserName'].'</strong> - ('.HumanDate($Line['Date']).')</span></div>';
     148                        $Output .= '<div><span style="float:right;"><strong>'.$Line['UserName'].'</strong> - ('.HumanDate($Line['Date']).')</span> <a href="?Thread='.$Line['ID'].'">'.str_replace("\n", '',$Line['Text']).'</a> </div>';
    149149                $Output .= '</div>'.$PageList['Output'];
    150150                return($Output);
  • trunk/includes/Version.php

    r761 r762  
    66// and system will need database update.
    77
    8 $Revision = 761; // Subversion revision
     8$Revision = 762; // Subversion revision
    99$DatabaseRevision = 748; // Database structure revision
    1010$ReleaseTime = '2014-01-24';
Note: See TracChangeset for help on using the changeset viewer.