[PC-BSD Commits] r1471 - websites/pbidir.com/bibivu/tpl/pbidir
svn at pcbsd.org
svn at pcbsd.org
Wed Feb 27 18:31:01 PST 2008
Author: fabry
Date: 2008-02-27 18:31:01 -0800 (Wed, 27 Feb 2008)
New Revision: 1471
Modified:
websites/pbidir.com/bibivu/tpl/pbidir/pbi_versions.php
Log:
fixed a problem that was showing up the date for a release. fixes #104
Modified: websites/pbidir.com/bibivu/tpl/pbidir/pbi_versions.php
===================================================================
--- websites/pbidir.com/bibivu/tpl/pbidir/pbi_versions.php 2008-02-28 01:03:53 UTC (rev 1470)
+++ websites/pbidir.com/bibivu/tpl/pbidir/pbi_versions.php 2008-02-28 02:31:01 UTC (rev 1471)
@@ -1,30 +1,30 @@
-<div class="pbi_releases">
-<?php
-if(is_array($pbi_releases) && count($pbi_releases)>0){
- ?><table class="list sortable" cellpadding="0" cellspacing="0">
- <thead class="head">
- <tr>
- <th width="100"><?=load_library('lang')->get('pbi_version')?></th>
- <th><?=load_library('lang')->get('pbi_summary')?></th>
- <th width="75"><?=load_library('lang')->get('pbi_size')?></th>
- <th width="75"><?=load_library('lang')->get('pbi_added')?></th>
- <th width="75"><?=load_library('lang')->get('pcbsd')?></th>
- </tr>
- </thead>
- <tbody><?php
- foreach($pbi_releases as $pbi_release){
- ?><tr>
- <td align="left"><a href="<?=$download_uri?>/<?=$pbi['id']?>/<?=$pbi_release['id']?>"><?=$pbi_release['version'].($pbi_release['bits']!='32'?' x'.$pbi_release['bits']:'')?></a></td>
- <td align="left"><?=$pbi_release['summary']?></td>
- <td align="right"><?=load_library('format')->bytes($pbi_release['size']*1024*1024)?></td>
- <td align="right"><?=load_library('format')->date($pbi_release['date_added'])?></td>
- <td align="right"><?=$pbi_release['pcbsd_version']?></td>
- </tr><?php
- }
-?></tbody>
-</table><?php
-} else {
- // No Releases Found !
-}
-?>
+<div class="pbi_releases">
+<?php
+if(is_array($pbi_releases) && count($pbi_releases)>0){
+ ?><table class="list sortable" cellpadding="0" cellspacing="0">
+ <thead class="head">
+ <tr>
+ <th width="100"><?=load_library('lang')->get('pbi_version')?></th>
+ <th><?=load_library('lang')->get('pbi_summary')?></th>
+ <th width="75"><?=load_library('lang')->get('pbi_size')?></th>
+ <th width="75"><?=load_library('lang')->get('pbi_added')?></th>
+ <th width="75"><?=load_library('lang')->get('pcbsd')?></th>
+ </tr>
+ </thead>
+ <tbody><?php
+ foreach($pbi_releases as $pbi_release){
+ ?><tr>
+ <td align="left"><a href="<?=$download_uri?>/<?=$pbi['id']?>/<?=$pbi_release['id']?>"><?=$pbi_release['version'].($pbi_release['bits']!='32'?' x'.$pbi_release['bits']:'')?></a></td>
+ <td align="left"><?=$pbi_release['summary']?></td>
+ <td align="right"><?=load_library('format')->bytes($pbi_release['size']*1024*1024)?></td>
+ <td align="right"><?=load_library('format')->date($pbi_release['date_last_modified'])?></td>
+ <td align="right"><?=$pbi_release['pcbsd_version']?></td>
+ </tr><?php
+ }
+?></tbody>
+</table><?php
+} else {
+ // No Releases Found !
+}
+?>
</div>
\ No newline at end of file
More information about the Commits
mailing list