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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2015-04-01 13:06:04 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2015-04-01 13:06:04 +0300
commit2b81d0f237fbfb573568a204b8fcacfc6f63d24d (patch)
tree15d17b05b820384692b035ee02203061fbcc8914 /apps/files/templates
parentf5c7ba6b817c2cd2094fc9a89c966b8ae93bc903 (diff)
Move core apps from private to public functions
Apps still use OC_Helper and OC_Util functions even when public ones are already available. Sometimes the public one is even used in the same file.
Diffstat (limited to 'apps/files/templates')
-rw-r--r--apps/files/templates/appnavigation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/templates/appnavigation.php b/apps/files/templates/appnavigation.php
index 8fd2b76f9c0..e6237c7f485 100644
--- a/apps/files/templates/appnavigation.php
+++ b/apps/files/templates/appnavigation.php
@@ -14,7 +14,7 @@
<h2>
<label for="webdavurl"><?php p($l->t('WebDAV'));?></label>
</h2>
- <input id="webdavurl" type="text" readonly="readonly" value="<?php p(OC_Helper::linkToRemote('webdav')); ?>" />
+ <input id="webdavurl" type="text" readonly="readonly" value="<?php p(\OCP\Util::linkToRemote('webdav')); ?>" />
<em><?php print_unescaped($l->t('Use this address to <a href="%s" target="_blank">access your Files via WebDAV</a>', array(link_to_docs('user-webdav'))));?></em>
</div>
</div>