aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_styles.php
diff options
context:
space:
mode:
authorCrizzo <mail@crizzo.de>2014-06-22 21:42:59 +0200
committerCrizzo <mail@crizzo.de>2014-06-22 22:02:46 +0200
commitc4e48ed0b962711d77adc8e5f3853350dc7c8ce0 (patch)
tree8e9444b93be3538ee383216bad31d6093aeb84ce /phpBB/includes/acp/acp_styles.php
parentff808b341c52c70f22e26d766dd248dac2e98f3d (diff)
downloadforums-c4e48ed0b962711d77adc8e5f3853350dc7c8ce0.tar
forums-c4e48ed0b962711d77adc8e5f3853350dc7c8ce0.tar.gz
forums-c4e48ed0b962711d77adc8e5f3853350dc7c8ce0.tar.bz2
forums-c4e48ed0b962711d77adc8e5f3853350dc7c8ce0.tar.xz
forums-c4e48ed0b962711d77adc8e5f3853350dc7c8ce0.zip
[ticket/12563] Adds &laquo; and &raquo; 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.php4
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 . '&amp;mode=style');
- $message .= '<br /><br />' . $this->user->lang('STYLE_INSTALLED_RETURN_UNINSTALLED_STYLES', $this->u_base_action . '&amp;mode=install');
+ $message .= '<br /><br /><a href="' . $this->u_base_action . '&amp;mode=style' . '">&laquo; ' . $this->user->lang('STYLE_INSTALLED_RETURN_INSTALLED_STYLES') . '</a>';
+ $message .= '<br /><br /><a href="' . $this->u_base_action . '&amp;mode=install' . '">&raquo; ' . $this->user->lang('STYLE_INSTALLED_RETURN_UNINSTALLED_STYLES') . '</a>';
trigger_error($message, E_USER_NOTICE);
}