diff options
author | redmatrix <git@macgirvin.com> | 2016-02-18 15:24:58 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-02-18 15:24:58 -0800 |
commit | 342fda94e4162634eeb67c18c1d284e7d78f217f (patch) | |
tree | 8171ce097a62ddf6de743a4ec25b2dd9ae3ccc41 /include/language.php | |
parent | c107bcfbd972a900cfd81b217014f7d4915fd73d (diff) | |
download | volse-hubzilla-342fda94e4162634eeb67c18c1d284e7d78f217f.tar.gz volse-hubzilla-342fda94e4162634eeb67c18c1d284e7d78f217f.tar.bz2 volse-hubzilla-342fda94e4162634eeb67c18c1d284e7d78f217f.zip |
Provide Zotlabs\Project and System class for querying details about the project/version info. Move these out of /boot.php
Diffstat (limited to 'include/language.php')
-rw-r--r-- | include/language.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/language.php b/include/language.php index c843db85e..121816ae6 100644 --- a/include/language.php +++ b/include/language.php @@ -189,7 +189,7 @@ function t($s, $ctx = '') { function translate_projectname($s) { - return str_replace(array('$projectname','$Projectname'),array(get_platform_name(),ucfirst(get_platform_name())),$s); + return str_replace(array('$projectname','$Projectname'),array(Zotlabs\Project\System::get_platform_name(),ucfirst(Zotlabs\Project\System::get_platform_name())),$s); } |