1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-11 10:05:19 +02:00

[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
This commit is contained in:
Igor Wiedler 2012-03-31 17:15:32 +02:00 committed by Vjacheslav Trushkin
parent 377db78dca
commit 5d07b16ec6

View File

@ -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');