aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/config/default/container/services_text_reparser.yml18
-rw-r--r--phpBB/phpbb/textreparser/forum_description.php (renamed from phpBB/phpbb/textreparser/forumdescription.php)2
-rw-r--r--phpBB/phpbb/textreparser/forum_rules.php (renamed from phpBB/phpbb/textreparser/forumrules.php)2
-rw-r--r--phpBB/phpbb/textreparser/group_description.php (renamed from phpBB/phpbb/textreparser/groupdescription.php)2
-rw-r--r--phpBB/phpbb/textreparser/pm_text.php (renamed from phpBB/phpbb/textreparser/pmtext.php)2
-rw-r--r--phpBB/phpbb/textreparser/post_text.php (renamed from phpBB/phpbb/textreparser/posttext.php)2
6 files changed, 14 insertions, 14 deletions
diff --git a/phpBB/config/default/container/services_text_reparser.yml b/phpBB/config/default/container/services_text_reparser.yml
index 3113c02f6d..c458be12ac 100644
--- a/phpBB/config/default/container/services_text_reparser.yml
+++ b/phpBB/config/default/container/services_text_reparser.yml
@@ -1,62 +1,62 @@
services:
text_reparser.admin_contact_info:
- class: phpbb\textreparser\admincontactinfo
+ class: phpbb\textreparser\admin_contact_info
arguments:
- @dbal.conn
tags:
- { name: text_reparser.plugin }
text_reparser.forum_description:
- class: phpbb\textreparser\forumdescription
+ class: phpbb\textreparser\forum_description
arguments:
- @dbal.conn
tags:
- { name: text_reparser.plugin }
text_reparser.forum_rules:
- class: phpbb\textreparser\forumrules
+ class: phpbb\textreparser\forum_rules
arguments:
- @dbal.conn
tags:
- { name: text_reparser.plugin }
text_reparser.group_description:
- class: phpbb\textreparser\groupdescription
+ class: phpbb\textreparser\group_description
arguments:
- @dbal.conn
tags:
- { name: text_reparser.plugin }
text_reparser.pm_text:
- class: phpbb\textreparser\pmtext
+ class: phpbb\textreparser\pm_text
arguments:
- @dbal.conn
tags:
- { name: text_reparser.plugin }
text_reparser.poll_option:
- class: phpbb\textreparser\polloption
+ class: phpbb\textreparser\poll_option
arguments:
- @dbal.conn
tags:
- { name: text_reparser.plugin }
text_reparser.poll_title:
- class: phpbb\textreparser\polltitle
+ class: phpbb\textreparser\poll_title
arguments:
- @dbal.conn
tags:
- { name: text_reparser.plugin }
text_reparser.post_text:
- class: phpbb\textreparser\posttext
+ class: phpbb\textreparser\post_text
arguments:
- @dbal.conn
tags:
- { name: text_reparser.plugin }
text_reparser.user_signature:
- class: phpbb\textreparser\usersignature
+ class: phpbb\textreparser\user_signature
arguments:
- @dbal.conn
tags:
diff --git a/phpBB/phpbb/textreparser/forumdescription.php b/phpBB/phpbb/textreparser/forum_description.php
index b715abd825..493f8d6c94 100644
--- a/phpBB/phpbb/textreparser/forumdescription.php
+++ b/phpBB/phpbb/textreparser/forum_description.php
@@ -13,7 +13,7 @@
namespace phpbb\textreparser;
-class forumdescription extends base
+class forum_description extends base
{
/**
* {@inheritdoc}
diff --git a/phpBB/phpbb/textreparser/forumrules.php b/phpBB/phpbb/textreparser/forum_rules.php
index c0538f6cce..5a3cc7b405 100644
--- a/phpBB/phpbb/textreparser/forumrules.php
+++ b/phpBB/phpbb/textreparser/forum_rules.php
@@ -13,7 +13,7 @@
namespace phpbb\textreparser;
-class forumrules extends base
+class forum_rules extends base
{
/**
* {@inheritdoc}
diff --git a/phpBB/phpbb/textreparser/groupdescription.php b/phpBB/phpbb/textreparser/group_description.php
index 608cc806b6..61354c832b 100644
--- a/phpBB/phpbb/textreparser/groupdescription.php
+++ b/phpBB/phpbb/textreparser/group_description.php
@@ -13,7 +13,7 @@
namespace phpbb\textreparser;
-class groupdescription extends base
+class group_description extends base
{
/**
* {@inheritdoc}
diff --git a/phpBB/phpbb/textreparser/pmtext.php b/phpBB/phpbb/textreparser/pm_text.php
index e1b27e60fe..b02cb0083f 100644
--- a/phpBB/phpbb/textreparser/pmtext.php
+++ b/phpBB/phpbb/textreparser/pm_text.php
@@ -13,7 +13,7 @@
namespace phpbb\textreparser;
-class pmtext extends base
+class pm_text extends base
{
/**
* {@inheritdoc}
diff --git a/phpBB/phpbb/textreparser/posttext.php b/phpBB/phpbb/textreparser/post_text.php
index 916fc94bfa..288bb0966b 100644
--- a/phpBB/phpbb/textreparser/posttext.php
+++ b/phpBB/phpbb/textreparser/post_text.php
@@ -13,7 +13,7 @@
namespace phpbb\textreparser;
-class posttext extends base
+class post_text extends base
{
/**
* {@inheritdoc}