summaryrefslogtreecommitdiffstats
path: root/apps/external
diff options
context:
space:
mode:
authorFrank Karlitschek <frank@owncloud.org>2012-05-01 09:49:22 +0200
committerFrank Karlitschek <frank@owncloud.org>2012-05-01 09:49:22 +0200
commite8ec999090d06127861bf51bf77c9ab2a50647ce (patch)
tree9f49a7d09350da41399c116848314505342e7da9 /apps/external
parent0195d5b4393dee68bb8a51068f10d0dc035b9d39 (diff)
downloadnextcloud-server-e8ec999090d06127861bf51bf77c9ab2a50647ce.tar.gz
nextcloud-server-e8ec999090d06127861bf51bf77c9ab2a50647ce.zip
port to use the new public api
Diffstat (limited to 'apps/external')
-rw-r--r--apps/external/appinfo/app.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/external/appinfo/app.php b/apps/external/appinfo/app.php
index 74e6d5c94c6..7f8ef3043bc 100644
--- a/apps/external/appinfo/app.php
+++ b/apps/external/appinfo/app.php
@@ -22,7 +22,7 @@
*/
OC::$CLASSPATH['OC_External'] = 'apps/external/lib/external.php';
-OC_Util::addStyle( 'external', 'style');
+OCP\Util::addStyle( 'external', 'style');
OC_APP::registerAdmin('external', 'settings');
@@ -32,4 +32,4 @@ $sites = OC_External::getSites();
for ($i = 0; $i < sizeof($sites); $i++) {
OC_App::addNavigationEntry(
array('id' => 'external_index' . ($i + 1), 'order' => 80 + $i, 'href' => OC_Helper::linkTo('external', 'index.php') . '?id=' . ($i + 1), 'icon' => OC_Helper::imagePath('external', 'external.png'), 'name' => $sites[$i][0]));
-} \ No newline at end of file
+}