diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-12-18 11:46:21 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-12-18 11:46:21 +0100 |
commit | e42f262d85ddd891ce823dd5d9b5a4a87c8a7786 (patch) | |
tree | 886ea4f3eceae73a52fb582b55185bad3dfa0b07 /settings/help.php | |
parent | 3d55569a277a68c9dac54b33684c3e22839386d8 (diff) | |
download | nextcloud-server-e42f262d85ddd891ce823dd5d9b5a4a87c8a7786.tar.gz nextcloud-server-e42f262d85ddd891ce823dd5d9b5a4a87c8a7786.zip |
properly use OCP\Util instead of OC_Helper
Diffstat (limited to 'settings/help.php')
-rw-r--r-- | settings/help.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/help.php b/settings/help.php index 21b48242706..848ce06cf49 100644 --- a/settings/help.php +++ b/settings/help.php @@ -34,11 +34,11 @@ OC_Util::addStyle( "settings", "settings" ); if(isset($_GET['mode']) and $_GET['mode'] === 'admin') { - $url=OC_Helper::linkToAbsolute( 'core', 'doc/admin/index.html' ); + $url=\OCP\Util::linkToAbsolute( 'core', 'doc/admin/index.html' ); $style1=''; $style2=' active'; }else{ - $url=OC_Helper::linkToAbsolute( 'core', 'doc/user/index.html' ); + $url=\OCP\Util::linkToAbsolute( 'core', 'doc/user/index.html' ); $style1=' active'; $style2=''; } |