diff options
author | Thomas Willingham <founder@kakste.com> | 2013-05-31 03:52:54 +0100 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-05-31 03:52:54 +0100 |
commit | dc6472e046ee6ac0afc934e8ad1edc1e281a3cb0 (patch) | |
tree | 3a6f1e3b0b38f267d46b9dbcc0110196407bc9e7 | |
parent | 595c2a5e9d1288b1d5a1ee8c98368dc39b25f7de (diff) | |
download | volse-hubzilla-dc6472e046ee6ac0afc934e8ad1edc1e281a3cb0.tar.gz volse-hubzilla-dc6472e046ee6ac0afc934e8ad1edc1e281a3cb0.tar.bz2 volse-hubzilla-dc6472e046ee6ac0afc934e8ad1edc1e281a3cb0.zip |
Add a webpages tab, where we can edit published pages.
-rwxr-xr-x | boot.php | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -2034,6 +2034,13 @@ function profile_tabs($a, $is_owner=False, $nickname=Null){ 'title' => t('Events and Calendar'), 'id' => 'events-tab', ); + $tabs[] = array( + 'label' => t('Wepages'), + 'url' => $a->get_baseurl() . '/webpages', + 'sel' => ((argv(0) == 'webpages') ? 'active' : ''), + 'title' => t('Manage Webpages'), + 'id' => 'webpages-tab', + ); } else { // FIXME |