Append apk dates on the same line as verison names

This commit is contained in:
Daniel Martí 2014-02-15 00:10:40 +01:00
parent adaa460082
commit 8b5d510fe2

View file

@ -323,8 +323,8 @@ class FDroid
$i=0; $i=0;
foreach($apks as $apk) { foreach($apks as $apk) {
$first = $i+1==count($apks); $first = $i+1==count($apks);
$out.="<p><b>Version ".$apk['version']."</b><br />"; $out.="<p><b>Version ".$apk['version']."</b>";
$out.="Added on ".$apk['added']."<br />"; $out.=" - Added on ".$apk['added']."<br />";
// Is this source or binary? // Is this source or binary?
$srcbuild = isset($apk['srcname']) && file_exists($this->site_path.'/repo/'.$apk['srcname']); $srcbuild = isset($apk['srcname']) && file_exists($this->site_path.'/repo/'.$apk['srcname']);