Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Karlitschek <frank@owncloud.org>2012-05-01 11:49:22 +0400
committerFrank Karlitschek <frank@owncloud.org>2012-05-01 11:49:22 +0400
commit0ab466809ac8aeef0faff400683138d260f0eaaf (patch)
treea4de5710e89dcb214632f59abb60e7138a1200e4 /external/appinfo
parent9241780939681b03341acfe981d8c0863fb148a0 (diff)
port to use the new public api
Diffstat (limited to 'external/appinfo')
-rw-r--r--external/appinfo/app.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/external/appinfo/app.php b/external/appinfo/app.php
index 74e6d5c94..7f8ef3043 100644
--- a/external/appinfo/app.php
+++ b/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
+}