diff options
Diffstat (limited to 'apps/external/appinfo/app.php')
-rw-r--r-- | apps/external/appinfo/app.php | 4 |
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 +} |