diff options
author | Frank Karlitschek <frank@owncloud.org> | 2012-05-02 00:20:45 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2012-05-02 00:20:45 +0200 |
commit | 93b63cf3755d3f1295c976c308b81c6340883abb (patch) | |
tree | 8e8a7413ea75723b7d21e18661a10842d1970bf1 /apps/external | |
parent | e48f511606a1ef64aa39099055dd6ae437f45d03 (diff) | |
download | nextcloud-server-93b63cf3755d3f1295c976c308b81c6340883abb.tar.gz nextcloud-server-93b63cf3755d3f1295c976c308b81c6340883abb.zip |
ported the rest of the OC_Helper calls
Diffstat (limited to 'apps/external')
-rwxr-xr-x | apps/external/appinfo/app.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/external/appinfo/app.php b/apps/external/appinfo/app.php index b69cc3b2d6b..66116ac4c6e 100755 --- a/apps/external/appinfo/app.php +++ b/apps/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])); } |