diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-01-04 12:59:32 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-01-04 12:59:32 +0100 |
commit | bfee488c562f5302ae9665af6ff943ec809c0c2a (patch) | |
tree | cdc08d62bf33b4589938a9d1535a7d1ea5add518 /settings/personal.php | |
parent | 157bb50a398be8a3e8ecc235068cae75e60495a6 (diff) | |
download | nextcloud-server-bfee488c562f5302ae9665af6ff943ec809c0c2a.tar.gz nextcloud-server-bfee488c562f5302ae9665af6ff943ec809c0c2a.zip |
remove unneeded 'goto' prefix from settings anchors
Diffstat (limited to 'settings/personal.php')
-rw-r--r-- | settings/personal.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/personal.php b/settings/personal.php index 9a714393585..d0a8f7840ad 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -177,7 +177,7 @@ $formsMap = array_map(function($form){ $anchor = str_replace(' ', '-', $anchor); return array( - 'anchor' => 'goto-' . $anchor, + 'anchor' => $anchor, 'section-name' => $sectionName, 'form' => $form ); |