aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Zotlabs/Project/System.php11
-rwxr-xr-xboot.php1
-rwxr-xr-xview/tpl/head.tpl2
3 files changed, 8 insertions, 6 deletions
diff --git a/Zotlabs/Project/System.php b/Zotlabs/Project/System.php
index f87f827bb..a67742db5 100644
--- a/Zotlabs/Project/System.php
+++ b/Zotlabs/Project/System.php
@@ -5,21 +5,24 @@ namespace Zotlabs\Project;
class System {
function get_platform_name() {
- $a = get_app();
if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['platform_name'])
return \App::$config['system']['platform_name'];
return PLATFORM_NAME;
}
+ function get_site_name() {
+ if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['sitename'])
+ return \App::$config['system']['sitename'];
+ return '';
+ }
+
function get_project_version() {
- $a = get_app();
if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['hide_version'])
return '';
return RED_VERSION;
}
function get_update_version() {
- $a = get_app();
if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['hide_version'])
return '';
return DB_UPDATE_VERSION;
@@ -27,14 +30,12 @@ class System {
function get_notify_icon() {
- $a = get_app();
if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['email_notify_icon_url'])
return \App::$config['system']['email_notify_icon_url'];
return z_root() . '/images/hz-white-32.png';
}
function get_site_icon() {
- $a = get_app();
if(is_array(\App::$config) && is_array(\App::$config['system']) && \App::$config['system']['site_icon_url'])
return \App::$config['system']['site_icon_url'];
return z_root() . '/images/hz-32.png';
diff --git a/boot.php b/boot.php
index 40c49df82..682eafd59 100755
--- a/boot.php
+++ b/boot.php
@@ -1069,6 +1069,7 @@ class App {
'$local_channel' => local_channel(),
'$metas' => self::$meta->get(),
'$update_interval' => $interval,
+ 'osearch' => sprintf( t('Search %1$s (%2$s)','opensearch'), Zotlabs\Project\System::get_site_name(), t('$Projectname','opensearch')),
'$icon' => head_get_icon(),
'$head_css' => head_get_css(),
'$head_js' => head_get_js(),
diff --git a/view/tpl/head.tpl b/view/tpl/head.tpl
index ba883c1f0..ab229eaf7 100755
--- a/view/tpl/head.tpl
+++ b/view/tpl/head.tpl
@@ -16,7 +16,7 @@
<link rel="search"
href="{{$baseurl}}/opensearch"
type="application/opensearchdescription+xml"
- title="Search in the Hubzilla" />
+ title="{{$osearch}}" />
<script>