diff options
author | JoshyPHP <s9e.dev@gmail.com> | 2015-05-01 05:32:48 +0200 |
---|---|---|
committer | JoshyPHP <s9e.dev@gmail.com> | 2015-05-30 17:26:00 +0200 |
commit | e11ae7e9cd5573658b763b1ef72cb889f547f2dd (patch) | |
tree | 1b8161e0f700eb99f90b7a7e6ec8be81ae9beb67 /phpBB/phpbb/textreparser | |
parent | de52580a78bcab47a2311f3993fd9952f963d563 (diff) | |
download | forums-e11ae7e9cd5573658b763b1ef72cb889f547f2dd.tar forums-e11ae7e9cd5573658b763b1ef72cb889f547f2dd.tar.gz forums-e11ae7e9cd5573658b763b1ef72cb889f547f2dd.tar.bz2 forums-e11ae7e9cd5573658b763b1ef72cb889f547f2dd.tar.xz forums-e11ae7e9cd5573658b763b1ef72cb889f547f2dd.zip |
[ticket/13803] Hyphenated class names
PHPBB3-13803
Diffstat (limited to 'phpBB/phpbb/textreparser')
-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 |
5 files changed, 5 insertions, 5 deletions
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} |