diff options
author | redmatrix <git@macgirvin.com> | 2016-05-20 22:52:47 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-20 22:52:47 -0700 |
commit | d8ace38041ad3ef161cf9c727c94b6ce2a00ce75 (patch) | |
tree | 80326bb033ded557c846cecafba3882459f20906 /Zotlabs/Module/Help.php | |
parent | bc20cf9fa3479be20417f78187f7302f13fbf0ec (diff) | |
download | volse-hubzilla-d8ace38041ad3ef161cf9c727c94b6ce2a00ce75.tar.gz volse-hubzilla-d8ace38041ad3ef161cf9c727c94b6ce2a00ce75.tar.bz2 volse-hubzilla-d8ace38041ad3ef161cf9c727c94b6ce2a00ce75.zip |
rework the conversation object stuff at a high level - still needs a bit of refactoring
Diffstat (limited to 'Zotlabs/Module/Help.php')
-rw-r--r-- | Zotlabs/Module/Help.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Help.php b/Zotlabs/Module/Help.php index 4842c56c6..cc46c550b 100644 --- a/Zotlabs/Module/Help.php +++ b/Zotlabs/Module/Help.php @@ -37,7 +37,7 @@ class Help extends \Zotlabs\Web\Controller { $path = trim(substr($dirname,4),'/'); $o .= '<li><a href="help/' . (($path) ? $path . '/' : '') . $fname . '" >' . ucwords(str_replace('_',' ',notags($fname))) . '</a><br />' . - str_replace('$Projectname',\Zotlabs\Project\System::get_platform_name(),substr($rr['text'],0,200)) . '...<br /><br /></li>'; + str_replace('$Projectname',\Zotlabs\Lib\System::get_platform_name(),substr($rr['text'],0,200)) . '...<br /><br /></li>'; } $o .= '</ul>'; |