aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/config/default/container/services_text_reparser.yml4
-rw-r--r--phpBB/phpbb/textreparser/plugins/contact_admin_info.php (renamed from phpBB/phpbb/textreparser/plugins/admin_contact_info.php)4
2 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/config/default/container/services_text_reparser.yml b/phpBB/config/default/container/services_text_reparser.yml
index c10a8c600a..f25728d9c8 100644
--- a/phpBB/config/default/container/services_text_reparser.yml
+++ b/phpBB/config/default/container/services_text_reparser.yml
@@ -1,6 +1,6 @@
services:
- text_reparser.admin_contact_info:
- class: phpbb\textreparser\plugins\admin_contact_info
+ text_reparser.contact_admin_info:
+ class: phpbb\textreparser\plugins\contact_admin_info
arguments:
- @config_text
tags:
diff --git a/phpBB/phpbb/textreparser/plugins/admin_contact_info.php b/phpBB/phpbb/textreparser/plugins/contact_admin_info.php
index e432ddea81..d21ef89445 100644
--- a/phpBB/phpbb/textreparser/plugins/admin_contact_info.php
+++ b/phpBB/phpbb/textreparser/plugins/contact_admin_info.php
@@ -13,7 +13,7 @@
namespace phpbb\textreparser\plugins;
-class admin_contact_info extends \phpbb\textreparser\base
+class contact_admin_info extends \phpbb\textreparser\base
{
/**
* @var \phpbb\config\db_text
@@ -64,6 +64,6 @@ class admin_contact_info extends \phpbb\textreparser\base
*/
protected function save_record(array $record)
{
- $this->config_text->set('admin_contact_info', $record['text']);
+ $this->config_text->set('contact_admin_info', $record['text']);
}
}