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:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2016-01-04 14:59:32 +0300
committerJan-Christoph Borchardt <hey@jancborchardt.net>2016-01-04 14:59:32 +0300
commitbfee488c562f5302ae9665af6ff943ec809c0c2a (patch)
treecdc08d62bf33b4589938a9d1535a7d1ea5add518 /settings/admin.php
parent157bb50a398be8a3e8ecc235068cae75e60495a6 (diff)
remove unneeded 'goto' prefix from settings anchors
Diffstat (limited to 'settings/admin.php')
-rw-r--r--settings/admin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/admin.php b/settings/admin.php
index ae4340cf14f..d484d6a1e48 100644
--- a/settings/admin.php
+++ b/settings/admin.php
@@ -210,7 +210,7 @@ $formsMap = array_map(function ($form) {
$anchor = str_replace(' ', '-', $anchor);
return array(
- 'anchor' => 'goto-' . $anchor,
+ 'anchor' => $anchor,
'section-name' => $sectionName,
'form' => $form
);