summaryrefslogtreecommitdiff
path: root/lib/util.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/util.php')
-rw-r--r--lib/util.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php
index 22350586c..5091c4bad 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -193,7 +193,10 @@ function common_show_header($pagetitle, $callable=NULL, $data=NULL, $headercall=
'id' => 'logo'));
common_element_end('a');
} else {
- common_element('p', array('id' => 'branding'), $config['site']['name']);
+ common_element_start('p', array('id' => 'branding'));
+ common_element('a', array('href' => common_local_url('public')),
+ $config['site']['name']);
+ common_element_end('p');
}
common_element('h1', 'pagetitle', $pagetitle);