diff options
author | marijus <mario@mariovavti.com> | 2014-09-28 23:14:49 +0200 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-09-28 23:14:49 +0200 |
commit | 97c6ba77c7cc09c646be9bb6b74a8d0907d9ecb1 (patch) | |
tree | 7a5e21b7b49537cec730b3e8ec9fc936b532c081 /mod/photos.php | |
parent | ffe6d20dc046fdfe490ba03b93a0bac32af7c4d8 (diff) | |
download | volse-hubzilla-97c6ba77c7cc09c646be9bb6b74a8d0907d9ecb1.tar.gz volse-hubzilla-97c6ba77c7cc09c646be9bb6b74a8d0907d9ecb1.tar.bz2 volse-hubzilla-97c6ba77c7cc09c646be9bb6b74a8d0907d9ecb1.zip |
some more work on photos
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, )); |