diff options
author | Igor Wiedler <igor@wiedler.ch> | 2012-03-31 17:15:32 +0200 |
---|---|---|
committer | Vjacheslav Trushkin <arty@phpbb.com> | 2012-03-31 18:20:49 +0300 |
commit | 5d07b16ec647f51d51504cf9d6a0861a975ceb8e (patch) | |
tree | 9efd6876cac0474d7a02bfa008c2bb56ce7f14c6 | |
parent | 377db78dcafb99ea65dca79777426db3117ec02c (diff) | |
download | forums-5d07b16ec647f51d51504cf9d6a0861a975ceb8e.tar forums-5d07b16ec647f51d51504cf9d6a0861a975ceb8e.tar.gz forums-5d07b16ec647f51d51504cf9d6a0861a975ceb8e.tar.bz2 forums-5d07b16ec647f51d51504cf9d6a0861a975ceb8e.tar.xz forums-5d07b16ec647f51d51504cf9d6a0861a975ceb8e.zip |
[feature/merging-style-components] Fix back link on install page
When on install page and all styles are installed, fix back link to go to main
styles page.
PHPBB3-10632
-rw-r--r-- | phpBB/includes/acp/acp_styles.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_styles.php b/phpBB/includes/acp/acp_styles.php index 9345ad470a..2772fb2217 100644 --- a/phpBB/includes/acp/acp_styles.php +++ b/phpBB/includes/acp/acp_styles.php @@ -611,7 +611,7 @@ class acp_styles // Show styles if (empty($styles)) { - trigger_error($user->lang['NO_UNINSTALLED_STYLE'] . adm_back_link($this->u_action), E_USER_NOTICE); + trigger_error($user->lang['NO_UNINSTALLED_STYLE'] . adm_back_link($this->u_base_action), E_USER_NOTICE); } usort($styles, 'acp_styles::sort_styles'); |