aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/System.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2016-11-17 11:00:34 -0800
committerzotlabs <mike@macgirvin.com>2016-11-17 11:00:34 -0800
commit1274889931925389add1fd52d07d90eb03a70b62 (patch)
treeda9672996d335251d61afa9f918e7f85bb7a43e0 /Zotlabs/Lib/System.php
parent0e8b13841a921bef6492e20e478cf27976384d84 (diff)
downloadvolse-hubzilla-1274889931925389add1fd52d07d90eb03a70b62.tar.gz
volse-hubzilla-1274889931925389add1fd52d07d90eb03a70b62.tar.bz2
volse-hubzilla-1274889931925389add1fd52d07d90eb03a70b62.zip
issue #588, change 'Bug Report' app to 'Report Bug'
Diffstat (limited to 'Zotlabs/Lib/System.php')
-rw-r--r--Zotlabs/Lib/System.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Lib/System.php b/Zotlabs/Lib/System.php
index 6ccfd664c..32aaa82a9 100644
--- a/Zotlabs/Lib/System.php
+++ b/Zotlabs/Lib/System.php
@@ -32,13 +32,13 @@ class System {
static public function get_notify_icon() {
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';
+ return z_root() . DEFAULT_NOTIFY_ICON;
}
static public function get_site_icon() {
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';
+ return z_root() . DEFAULT_PLATFORM_ICON ;
}