diff options
author | Thomas Willingham <founder@kakste.com> | 2014-05-22 19:40:31 +0100 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2014-05-22 19:40:31 +0100 |
commit | 20343365fd10c36e26182c26f1008474ac433f91 (patch) | |
tree | aa136a53a59eadea1443279993e04fa951aca2b8 | |
parent | 292601728430469f21b81d7055cd485a0efb491c (diff) | |
download | volse-hubzilla-20343365fd10c36e26182c26f1008474ac433f91.tar.gz volse-hubzilla-20343365fd10c36e26182c26f1008474ac433f91.tar.bz2 volse-hubzilla-20343365fd10c36e26182c26f1008474ac433f91.zip |
Fix photo updates in appman.
-rw-r--r-- | mod/appman.php | 4 |
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 +} |