summaryrefslogtreecommitdiffstats
path: root/apk_browser.module
diff options
context:
space:
mode:
authorCarlo Landmeter <clandmeter@gmail.com>2011-04-28 11:49:31 +0200
committerCarlo Landmeter <clandmeter@gmail.com>2011-04-28 11:49:31 +0200
commit92b876c4fde0673484ba3c2b3c04257e07da51a9 (patch)
treeac0ba26801fc8c2fdfa3af70a24f6deebca88717 /apk_browser.module
parentfeb455ed7cb07daf07fa960a627c3b4f88485ae1 (diff)
downloadapk_browser-92b876c4fde0673484ba3c2b3c04257e07da51a9.tar.bz2
apk_browser-92b876c4fde0673484ba3c2b3c04257e07da51a9.tar.xz
date field does not have safe_value, using value instead
Diffstat (limited to 'apk_browser.module')
-rw-r--r--apk_browser.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/apk_browser.module b/apk_browser.module
index 2a5532b..d428ce9 100644
--- a/apk_browser.module
+++ b/apk_browser.module
@@ -548,7 +548,7 @@ function apk_browser_package_table($vars) {
$fields[t('Description')] = $vars['apk_description'][0]['safe_value'];
$fields[t('License')] = $vars['apk_license'][0]['safe_value'];
$fields[t('Maintainer')] = empty($vars['apk_maintainer']) ? $empty : $vars['apk_maintainer'][0]['safe_value'];
- $fields[t('Build date')] = empty($vars['apk_build_time']) ? $empty : date('r', $vars['apk_build_time'][0]['safe_value']);
+ $fields[t('Build date')] = empty($vars['apk_build_time']) ? $empty : date('r', $vars['apk_build_time'][0]['value']);
$fields[t('Commit')] = empty($vars['apk_commit']) ? $empty : apk_browser_commit_url($vars['apk_commit']['0']['value']);
//only show origin if its different then itself
if (!empty($vars['apk_origin']) && ($vars['apk_origin'][0]['value'] != $vars['title'])) {