aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/textreparser/plugins
diff options
context:
space:
mode:
authorJoshyPHP <s9e.dev@gmail.com>2015-05-10 01:54:54 +0200
committerJoshyPHP <s9e.dev@gmail.com>2015-05-30 17:26:01 +0200
commit54b18df084b845c058426b38e7ccfeb534d04ce0 (patch)
tree5eb307134aa685ad8a03fd579029d2044c90c99e /phpBB/phpbb/textreparser/plugins
parent3827a131ae11dcd3adf852f80ff4d85e7a7d470b (diff)
downloadforums-54b18df084b845c058426b38e7ccfeb534d04ce0.tar
forums-54b18df084b845c058426b38e7ccfeb534d04ce0.tar.gz
forums-54b18df084b845c058426b38e7ccfeb534d04ce0.tar.bz2
forums-54b18df084b845c058426b38e7ccfeb534d04ce0.tar.xz
forums-54b18df084b845c058426b38e7ccfeb534d04ce0.zip
[ticket/13803] Added contact_admin_info tests
PHPBB3-13803
Diffstat (limited to 'phpBB/phpbb/textreparser/plugins')
-rw-r--r--phpBB/phpbb/textreparser/plugins/contact_admin_info.php (renamed from phpBB/phpbb/textreparser/plugins/admin_contact_info.php)4
1 files changed, 2 insertions, 2 deletions
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']);
}
}