aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-07-23 20:49:56 -0700
committerfriendica <info@friendica.com>2012-07-23 20:49:56 -0700
commit4b36e41b098ae805d8a25e1c4ce7f38161418eea (patch)
tree5492b74501172b76e87277319ecdf1a3abf86d8b /mod
parente18417ea47bac5add79bc4f8fad8e89c6c6f9d08 (diff)
downloadvolse-hubzilla-4b36e41b098ae805d8a25e1c4ce7f38161418eea.tar.gz
volse-hubzilla-4b36e41b098ae805d8a25e1c4ce7f38161418eea.tar.bz2
volse-hubzilla-4b36e41b098ae805d8a25e1c4ce7f38161418eea.zip
implement page update modes
Diffstat (limited to 'mod')
-rw-r--r--mod/photos.php2
-rw-r--r--mod/pretheme.php12
2 files changed, 10 insertions, 4 deletions
diff --git a/mod/photos.php b/mod/photos.php
index ed86fae23..0354b1941 100644
--- a/mod/photos.php
+++ b/mod/photos.php
@@ -985,7 +985,7 @@ function photos_content(&$a) {
call_hooks('photo_upload_form',$ret);
- $default_upload = '<input type="file" name="userfile" /> <div class="photos-upload-submit-wrapper" >
+ $default_upload = '<input id="photos-upload-choose" type="file" name="userfile" /> <div class="photos-upload-submit-wrapper" >
<input type="submit" name="submit" value="' . t('Submit') . '" id="photos-upload-submit" /> </div>';
diff --git a/mod/pretheme.php b/mod/pretheme.php
index 0efa587d8..4584cb29e 100644
--- a/mod/pretheme.php
+++ b/mod/pretheme.php
@@ -7,10 +7,16 @@ function pretheme_init(&$a) {
$info = get_theme_info($theme);
if($info) {
// unfortunately there will be no translation for this string
- $desc = $info['description'] . ' ' . $info['version'];
+ $desc = $info['description'];
+ $version = $info['version'];
+ $credits = $info['credits'];
}
- else $desc = '';
- echo json_encode(array('img' => get_theme_screenshot($theme), 'desc' => $desc));
+ else {
+ $desc = '';
+ $version = '';
+ $credits = '';
+ }
+ echo json_encode(array('img' => get_theme_screenshot($theme), 'desc' => $desc, 'version' => $version, 'credits' => $credits));
}
killme();
}