diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2006-10-02 15:11:40 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-10-02 15:11:40 +0000 |
| commit | cc4a0a2f7a02f909735d265f4f199f9736c30a48 (patch) | |
| tree | aa984be5c8fca4b1f05d7fa755b2f3d382a89cf7 /phpBB/includes/acp/acp_search.php | |
| parent | fc76c94ab14993f98e0bbbf8b26150886ce69352 (diff) | |
| download | forums-cc4a0a2f7a02f909735d265f4f199f9736c30a48.tar forums-cc4a0a2f7a02f909735d265f4f199f9736c30a48.tar.gz forums-cc4a0a2f7a02f909735d265f4f199f9736c30a48.tar.bz2 forums-cc4a0a2f7a02f909735d265f4f199f9736c30a48.tar.xz forums-cc4a0a2f7a02f909735d265f4f199f9736c30a48.zip | |
consistent acp layout regarding backlinks and messages.
git-svn-id: file:///svn/phpbb/trunk@6428 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_search.php')
| -rw-r--r-- | phpBB/includes/acp/acp_search.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/acp/acp_search.php b/phpBB/includes/acp/acp_search.php index ca6fab89db..fee5beb8eb 100644 --- a/phpBB/includes/acp/acp_search.php +++ b/phpBB/includes/acp/acp_search.php @@ -152,7 +152,7 @@ class acp_search } else { - trigger_error($error, E_USER_WARNING); + trigger_error($error . adm_back_link($this->u_action), E_USER_WARNING); } } else @@ -168,7 +168,7 @@ class acp_search } else { - trigger_error($error, E_USER_WARNING); + trigger_error($error . adm_back_link($this->u_action), E_USER_WARNING); } } @@ -241,7 +241,7 @@ class acp_search $error = false; if ($this->init_search($this->state[0], $this->search, $error)) { - trigger_error($error, E_USER_WARNING); + trigger_error($error . adm_back_link($this->u_action), E_USER_WARNING); } $action = &$this->state[1]; |
