diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-05-02 00:50:26 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-05-02 00:50:26 +0200 |
commit | 2fe646dcec08b36179aa2b6ebca447a20e409b03 (patch) | |
tree | e5b909e88d9271e3301c9db3fea8771d059a914d /apps/external/index.php | |
parent | c94f39b488f9ae6bd24cbdbb5cfa877e29f199e3 (diff) | |
download | nextcloud-server-2fe646dcec08b36179aa2b6ebca447a20e409b03.tar.gz nextcloud-server-2fe646dcec08b36179aa2b6ebca447a20e409b03.zip |
ported the oc_app calls
Diffstat (limited to 'apps/external/index.php')
-rwxr-xr-x | apps/external/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/external/index.php b/apps/external/index.php index 1d4e5cc5051..f1f6cbac3cf 100755 --- a/apps/external/index.php +++ b/apps/external/index.php @@ -33,7 +33,7 @@ if (isset($_GET['id'])) { $sites = OC_External::getSites(); if (sizeof($sites) >= $id) { $url = $sites[$id - 1][1]; - OC_App::setActiveNavigationEntry('external_index' . $id); + OCP\App::setActiveNavigationEntry('external_index' . $id); $tmpl = new OC_Template('external', 'frame', 'user'); $tmpl->assign('url', $url); |