diff options
author | Friendika <info@friendika.com> | 2010-12-22 20:04:20 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-12-22 20:04:20 -0800 |
commit | e287014b98a4688fa2051fb03e8e9032b380dcb8 (patch) | |
tree | 51e7c829d2aaeb875b4c1875029e586dc073eabb /include | |
parent | 0e6eb4d002da8589d58736babc29732f61998306 (diff) | |
download | volse-hubzilla-e287014b98a4688fa2051fb03e8e9032b380dcb8.tar.gz volse-hubzilla-e287014b98a4688fa2051fb03e8e9032b380dcb8.tar.bz2 volse-hubzilla-e287014b98a4688fa2051fb03e8e9032b380dcb8.zip |
navigation aid: show server name on page
Diffstat (limited to 'include')
-rw-r--r-- | include/nav.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/nav.php b/include/nav.php index e41c4bcb9..af0c58710 100644 --- a/include/nav.php +++ b/include/nav.php @@ -5,6 +5,7 @@ $a->page['nav'] .= '<div id="panel" style="display: none;"></div>' ; + $a->page['nav'] .= '<div id="site-location">' . substr($a->get_baseurl(),strpos($a->get_baseurl(),'//') + 2 ) . '</div>'; if(local_user()) { $a->page['nav'] .= '<a id="nav-logout-link" class="nav-link" href="logout">' . t('Logout') . "</a>\r\n"; } |