mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Add "Added on" to apks on wordpress (#157)
This commit is contained in:
parent
125a36b4de
commit
525fc14407
1 changed files with 4 additions and 0 deletions
|
|
@ -156,6 +156,9 @@ class FDroid
|
|||
case "name":
|
||||
$name=$el;
|
||||
break;
|
||||
case "added":
|
||||
$added=$el;
|
||||
break;
|
||||
case "icon":
|
||||
$icon=$el;
|
||||
break;
|
||||
|
|
@ -306,6 +309,7 @@ class FDroid
|
|||
foreach($apks as $apk) {
|
||||
$first = $i+1==count($apks);
|
||||
$out.="<p><b>Version ".$apk['version']."</b><br />";
|
||||
$out.="Added on ".$apk['added']."<br />";
|
||||
|
||||
// Is this source or binary?
|
||||
$srcbuild = isset($apk['srcname']) && file_exists($this->site_path.'/repo/'.$apk['srcname']);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue