mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 13:28:55 +00:00
[ticket/16913] Remove duplicate parsing of language variables
PHPBB3-16913
This commit is contained in:
parent
df476f733f
commit
83dfa4847b
1 changed files with 4 additions and 4 deletions
|
@ -429,8 +429,8 @@ class acp_search
|
|||
);
|
||||
|
||||
$this->template->assign_vars([
|
||||
'INDEXING_TITLE' => $this->language->lang($message_progress),
|
||||
'INDEXING_EXPLAIN' => $this->language->lang($message_progress_explain),
|
||||
'INDEXING_TITLE' => $message_progress,
|
||||
'INDEXING_EXPLAIN' => $message_progress_explain,
|
||||
'INDEXING_PROGRESS' => $message_redirect,
|
||||
'INDEXING_RATE' => $message_redirect_rate,
|
||||
'INDEXING_PROGRESS_BAR' => $this->get_post_index_progress($post_counter),
|
||||
|
@ -483,8 +483,8 @@ class acp_search
|
|||
]);
|
||||
|
||||
$this->template->assign_vars([
|
||||
'INDEXING_TITLE' => $this->language->lang($message_progress),
|
||||
'INDEXING_EXPLAIN' => $this->language->lang($message_progress_explain),
|
||||
'INDEXING_TITLE' => $message_progress,
|
||||
'INDEXING_EXPLAIN' => $message_progress_explain,
|
||||
'INDEXING_PROGRESS_BAR' => $this->get_post_index_progress($post_counter),
|
||||
]);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue