aboutsummaryrefslogtreecommitdiffstats
path: root/mod/appman.php
diff options
context:
space:
mode:
authorThomas Willingham <founder@kakste.com>2014-05-22 19:40:31 +0100
committerThomas Willingham <founder@kakste.com>2014-05-22 19:40:31 +0100
commit20343365fd10c36e26182c26f1008474ac433f91 (patch)
treeaa136a53a59eadea1443279993e04fa951aca2b8 /mod/appman.php
parent292601728430469f21b81d7055cd485a0efb491c (diff)
downloadvolse-hubzilla-20343365fd10c36e26182c26f1008474ac433f91.tar.gz
volse-hubzilla-20343365fd10c36e26182c26f1008474ac433f91.tar.bz2
volse-hubzilla-20343365fd10c36e26182c26f1008474ac433f91.zip
Fix photo updates in appman.
Diffstat (limited to 'mod/appman.php')
-rw-r--r--mod/appman.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/appman.php b/mod/appman.php
index 15f27676c..49adcd7fa 100644
--- a/mod/appman.php
+++ b/mod/appman.php
@@ -87,7 +87,7 @@ logger('content');
'$name' => array('name', t('Name of app'),(($app) ? $app['app_name'] : ''), t('Required')),
'$url' => array('url', t('Location (URL) of app'),(($app) ? $app['app_url'] : ''), t('Required')),
'$desc' => array('desc', t('Description'),(($app) ? $app['app_desc'] : ''), ''),
- '$photo' => array('photo', t('Photo icon URL'),(($app) ? $app['app_url'] : ''), t('80 x 80 pixels - optional')),
+ '$photo' => array('photo', t('Photo icon URL'),(($app) ? $app['app_photo'] : ''), t('80 x 80 pixels - optional')),
'$version' => array('version', t('Version ID'),(($app) ? $app['app_version'] : ''), ''),
'$price' => array('price', t('Price of app'),(($app) ? $app['app_price'] : ''), ''),
'$page' => array('page', t('Location (URL) to purchase app'),(($app) ? $app['app_page'] : ''), ''),
@@ -95,4 +95,4 @@ logger('content');
'$submit' => t('Submit')
));
-} \ No newline at end of file
+}