diff options
author | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-09-29 19:12:12 +0100 |
---|---|---|
committer | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-09-29 19:12:12 +0100 |
commit | 7c3b428e670ec3508f821a95568ba1248ce33616 (patch) | |
tree | 7210ebb4355561ea72f155b666bdaf3b367088cd /mod/photos.php | |
parent | 90378e8ef8647807a348541a65a908da6656ce1b (diff) | |
parent | 43d2a8ceae87d9c39f543e9f4dd07566db325e62 (diff) | |
download | volse-hubzilla-7c3b428e670ec3508f821a95568ba1248ce33616.tar.gz volse-hubzilla-7c3b428e670ec3508f821a95568ba1248ce33616.tar.bz2 volse-hubzilla-7c3b428e670ec3508f821a95568ba1248ce33616.zip |
Merge branch 'master' of https://github.com/friendica/red
Diffstat (limited to 'mod/photos.php')
-rw-r--r-- | mod/photos.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/photos.php b/mod/photos.php index c2d90184e..0ff0e29c9 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -654,7 +654,7 @@ function photos_content(&$a) { ); $o .= '<div class="section-title-wrapper">'; - $o .= '<h3>' . $album . '</h3>'; + $o .= '<h2>' . $album . '</h2>'; $o .= '<div class="section-title-submenu">'; if($cmd === 'edit') { if(($album !== t('Profile Photos')) && ($album !== 'Contact Photos') && ($album !== t('Contact Photos'))) { @@ -1238,7 +1238,7 @@ function photos_content(&$a) { $o .= replace_macros($tpl, array( '$title' => t('Recent Photos'), '$can_post' => $can_post, - '$upload' => array(t('Upload New Photos'), $a->get_baseurl().'/photos/'.$a->data['channel']['channel_address'].'/upload'), + '$upload' => array(t('Upload'), $a->get_baseurl().'/photos/'.$a->data['channel']['channel_address'].'/upload'), '$photos' => $photos, )); |