Changeset 78 for trunk/www/Application/View/News.php
- Timestamp:
- Sep 11, 2009, 8:18:38 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/Application/View/News.php
r72 r78 1 1 <?php 2 2 3 class NewsView extends Module 3 include_once(dirname(__FILE__).'/../../Base/View.php'); 4 5 class NewsView extends View 4 6 { 5 7 var $ItemFormClass = array( … … 43 45 while($DbRow = $DbResult->fetch_assoc()) 44 46 { 45 $Output .= '<div><strong>'.$DbRow['Title'].'</strong>('. HumanDate($DbRow['Time']).')<br />'.$DbRow['Content'].'</div>';47 $Output .= '<div><strong>'.$DbRow['Title'].'</strong>('.$DbRow['Time'].')<br />'.$DbRow['Content'].'</div>'; 46 48 } 47 49 $Output .= '</td>';
Note:
See TracChangeset
for help on using the changeset viewer.