diff options
| author | Crizzo <mail@crizzo.de> | 2014-06-12 19:19:46 +0200 |
|---|---|---|
| committer | Crizzo <mail@crizzo.de> | 2014-06-12 19:19:46 +0200 |
| commit | 453cb709635465cc76497fae8f5bafc002463415 (patch) | |
| tree | 37bd3163da0ea8e17129ebe9d5d1ffb9a70360a3 /phpBB/includes/acp | |
| parent | 3a48f765580e36b1a0e344cea78b53ef4b5b3886 (diff) | |
| download | forums-453cb709635465cc76497fae8f5bafc002463415.tar forums-453cb709635465cc76497fae8f5bafc002463415.tar.gz forums-453cb709635465cc76497fae8f5bafc002463415.tar.bz2 forums-453cb709635465cc76497fae8f5bafc002463415.tar.xz forums-453cb709635465cc76497fae8f5bafc002463415.zip | |
[ticket/12563] Removes strintf in acp_styles.php and shorts up <a>
PHPBB3-12563
Diffstat (limited to 'phpBB/includes/acp')
| -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 b2160ef015..8bd13933c3 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 />' . sprintf($this->user->lang['STYLE_INSTALLED_RETURN_INSTALLED_STYLES'], $this->u_base_action . '&mode=style'); - $message .= '<br /><br />' . sprintf($this->user->lang['STYLE_INSTALLED_RETURN_UNINSTALLED_STYLES'], $this->u_base_action . '&mode=install'); + $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'); trigger_error($message, E_USER_NOTICE); } |
