Skip to content

Commit

Permalink
Merge pull request #12801 from jeabakker/admin-settings
Browse files Browse the repository at this point in the history
Admin settings
  • Loading branch information
jdalsem committed Aug 28, 2019
2 parents 27c2fac + 5444477 commit fd3778d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/contribute/core/releases.rst
Expand Up @@ -87,7 +87,7 @@ Run the ``release.php`` script. For example, to release 1.12.5:
This creates a ``release-1.12.5`` branch in your local repo.

Next, manually browse to the ``/admin/settings/basic`` page and verify it loads. If it does not, a language file from Transifex may
Next, manually browse to the ``/admin/site_settings`` page and verify it loads. If it does not, a language file from Transifex may
have a PHP syntax error. Fix the error and amend your commit with the new file:

.. code-block:: sh
Expand Down
2 changes: 1 addition & 1 deletion engine/classes/ElggInstaller.php
Expand Up @@ -638,7 +638,7 @@ protected function runComplete() {
$link = elgg_format_element([
'#tag_name' => 'a',
'#text' => elgg_echo('install:complete:admin_notice:link_text'),
'href' => elgg_normalize_url('admin/settings/basic'),
'href' => elgg_normalize_url('admin/site_settings'),
]);
$notice = elgg_echo('install:complete:admin_notice', [$link]);
elgg_add_admin_notice('fresh_install', $notice);
Expand Down
2 changes: 1 addition & 1 deletion mod/developers/views/default/theme_sandbox/intro.php
Expand Up @@ -17,7 +17,7 @@
if ($simple_cache || $system_cache) {
$advanced = elgg_view('output/url', [
'text' => 'Advanced Settings',
'href' => 'admin/settings/advanced',
'href' => 'admin/site_settings',
'is_trusted' => true
]);
$developers = elgg_view('output/url', [
Expand Down

0 comments on commit fd3778d

Please sign in to comment.