diff options
| author | Dhruv Goel <dhruv.goel92@gmail.com> | 2014-06-23 22:04:20 +0530 |
|---|---|---|
| committer | Dhruv Goel <dhruv.goel92@gmail.com> | 2014-06-23 22:04:20 +0530 |
| commit | dfbe072d5132ff3110131cf219826cdd26ddd4b1 (patch) | |
| tree | 0949496e137cd2ab0e958c6b8d58fbd318166d0c /phpBB/includes | |
| parent | 1f9e1fd177c803d9cf12c20cba9bda37ef3ecf58 (diff) | |
| parent | c4e48ed0b962711d77adc8e5f3853350dc7c8ce0 (diff) | |
| download | forums-dfbe072d5132ff3110131cf219826cdd26ddd4b1.tar forums-dfbe072d5132ff3110131cf219826cdd26ddd4b1.tar.gz forums-dfbe072d5132ff3110131cf219826cdd26ddd4b1.tar.bz2 forums-dfbe072d5132ff3110131cf219826cdd26ddd4b1.tar.xz forums-dfbe072d5132ff3110131cf219826cdd26ddd4b1.zip | |
Merge pull request #2571 from Crizz0/ticket/12563
[ticket/12563] Changes 2 style specific language variables for better understanding
Diffstat (limited to 'phpBB/includes')
| -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 3d0d27e8c9..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 />' . sprintf($this->user->lang['STYLE_INSTALLED_RETURN_STYLES'], $this->u_base_action . '&mode=style'); - $message .= '<br /><br />' . sprintf($this->user->lang['STYLE_INSTALLED_RETURN_UNINSTALLED'], $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); } |
