diff options
author | Crizzo <mail@crizzo.de> | 2014-06-22 21:42:59 +0200 |
---|---|---|
committer | Crizzo <mail@crizzo.de> | 2014-06-22 22:02:46 +0200 |
commit | c4e48ed0b962711d77adc8e5f3853350dc7c8ce0 (patch) | |
tree | 8e9444b93be3538ee383216bad31d6093aeb84ce /phpBB/includes/acp/acp_styles.php | |
parent | ff808b341c52c70f22e26d766dd248dac2e98f3d (diff) | |
download | forums-c4e48ed0b962711d77adc8e5f3853350dc7c8ce0.tar forums-c4e48ed0b962711d77adc8e5f3853350dc7c8ce0.tar.gz forums-c4e48ed0b962711d77adc8e5f3853350dc7c8ce0.tar.bz2 forums-c4e48ed0b962711d77adc8e5f3853350dc7c8ce0.tar.xz forums-c4e48ed0b962711d77adc8e5f3853350dc7c8ce0.zip |
[ticket/12563] Adds « and » to the links in acp_styles.php
PHPBB3-12563
Diffstat (limited to 'phpBB/includes/acp/acp_styles.php')
-rw-r--r-- | phpBB/includes/acp/acp_styles.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_styles.php b/phpBB/includes/acp/acp_styles.php index 8bd13933c3..4cc93e5670 100644 --- a/phpBB/includes/acp/acp_styles.php +++ b/phpBB/includes/acp/acp_styles.php @@ -209,8 +209,8 @@ class acp_styles trigger_error($this->user->lang['NO_MATCHING_STYLES_FOUND'] . adm_back_link($this->u_action), E_USER_WARNING); } $message = implode('<br />', $messages); - $message .= '<br /><br />' . $this->user->lang('STYLE_INSTALLED_RETURN_INSTALLED_STYLES', $this->u_base_action . '&mode=style'); - $message .= '<br /><br />' . $this->user->lang('STYLE_INSTALLED_RETURN_UNINSTALLED_STYLES', $this->u_base_action . '&mode=install'); + $message .= '<br /><br /><a href="' . $this->u_base_action . '&mode=style' . '">« ' . $this->user->lang('STYLE_INSTALLED_RETURN_INSTALLED_STYLES') . '</a>'; + $message .= '<br /><br /><a href="' . $this->u_base_action . '&mode=install' . '">» ' . $this->user->lang('STYLE_INSTALLED_RETURN_UNINSTALLED_STYLES') . '</a>'; trigger_error($message, E_USER_NOTICE); } |