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-02 02:20:45 +0400
committerFrank Karlitschek <frank@owncloud.org>2012-05-02 02:20:45 +0400
commit696752b4819530b0e3e21e0a672c000c2df3c198 (patch)
treec50317fcc68ab35307384e3c5f6f1d6f3cb4ab64 /external/appinfo
parentb1de6ffb5371392818597a57a69c516135391f72 (diff)
ported the rest of the OC_Helper calls
Diffstat (limited to 'external/appinfo')
-rwxr-xr-xexternal/appinfo/app.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/external/appinfo/app.php b/external/appinfo/app.php
index b69cc3b2d..66116ac4c 100755
--- a/external/appinfo/app.php
+++ b/external/appinfo/app.php
@@ -31,5 +31,5 @@ OC_App::register(array('order' => 70, 'id' => 'external', 'name' => 'External'))
$sites = OC_External::getSites();
for ($i = 0; $i < sizeof($sites); $i++) {
OC_App::addNavigationEntry(
- array('id' => 'external_index' . ($i + 1), 'order' => 80 + $i, 'href' => OCP\Util::linkTo('external', 'index.php') . '?id=' . ($i + 1), 'icon' => OC_Helper::imagePath('external', 'external.png'), 'name' => $sites[$i][0]));
+ array('id' => 'external_index' . ($i + 1), 'order' => 80 + $i, 'href' => OCP\Util::linkTo('external', 'index.php') . '?id=' . ($i + 1), 'icon' => OCP\Util::imagePath('external', 'external.png'), 'name' => $sites[$i][0]));
}