diff options
author | friendica <info@friendica.com> | 2013-07-14 01:14:03 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-07-14 01:14:03 -0700 |
commit | 5b73755af7befa171223c6cdb6cc7ec917cedd6f (patch) | |
tree | 69041a7fd1be926904d213b9b8deab5e846ff1d2 /boot.php | |
parent | 8154268d0a1cc934d7182935258d3f90e43827ba (diff) | |
parent | ba5803bebc144f46fe1a9d29b08e3b6ac71aaecc (diff) | |
download | volse-hubzilla-5b73755af7befa171223c6cdb6cc7ec917cedd6f.tar.gz volse-hubzilla-5b73755af7befa171223c6cdb6cc7ec917cedd6f.tar.bz2 volse-hubzilla-5b73755af7befa171223c6cdb6cc7ec917cedd6f.zip |
Merge https://github.com/friendica/red into zpull
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -2058,13 +2058,14 @@ function profile_tabs($a, $is_owner=False, $nickname=Null){ 'title' => t('Events and Calendar'), 'id' => 'events-tab', ); + if(feature_enabled(local_user(),'webpages')){ $tabs[] = array( - 'label' => t('Wepages'), + 'label' => t('Webpages'), 'url' => $a->get_baseurl() . '/webpages/' . $nickname, 'sel' => ((argv(0) == 'webpages') ? 'active' : ''), 'title' => t('Manage Webpages'), 'id' => 'webpages-tab', - ); + );} } else { // FIXME |