aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/textreparser/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/textreparser/plugins')
-rw-r--r--phpBB/phpbb/textreparser/plugins/forum_description.php4
-rw-r--r--phpBB/phpbb/textreparser/plugins/forum_rules.php4
-rw-r--r--phpBB/phpbb/textreparser/plugins/group_description.php4
-rw-r--r--phpBB/phpbb/textreparser/plugins/pm_text.php4
-rw-r--r--phpBB/phpbb/textreparser/plugins/poll_option.php4
-rw-r--r--phpBB/phpbb/textreparser/plugins/poll_title.php4
-rw-r--r--phpBB/phpbb/textreparser/plugins/post_text.php4
-rw-r--r--phpBB/phpbb/textreparser/plugins/user_signature.php4
8 files changed, 16 insertions, 16 deletions
diff --git a/phpBB/phpbb/textreparser/plugins/forum_description.php b/phpBB/phpbb/textreparser/plugins/forum_description.php
index d6e95c9638..7798e4b20b 100644
--- a/phpBB/phpbb/textreparser/plugins/forum_description.php
+++ b/phpBB/phpbb/textreparser/plugins/forum_description.php
@@ -18,7 +18,7 @@ class forum_description extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_columns()
+ public function get_columns()
{
return array(
'id' => 'forum_id',
@@ -30,7 +30,7 @@ class forum_description extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_table_name()
+ public function get_table_name()
{
return FORUMS_TABLE;
}
diff --git a/phpBB/phpbb/textreparser/plugins/forum_rules.php b/phpBB/phpbb/textreparser/plugins/forum_rules.php
index 36bb595cb9..57c666a556 100644
--- a/phpBB/phpbb/textreparser/plugins/forum_rules.php
+++ b/phpBB/phpbb/textreparser/plugins/forum_rules.php
@@ -18,7 +18,7 @@ class forum_rules extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_columns()
+ public function get_columns()
{
return array(
'id' => 'forum_id',
@@ -30,7 +30,7 @@ class forum_rules extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_table_name()
+ public function get_table_name()
{
return FORUMS_TABLE;
}
diff --git a/phpBB/phpbb/textreparser/plugins/group_description.php b/phpBB/phpbb/textreparser/plugins/group_description.php
index c83079827c..ddd0e1d1c5 100644
--- a/phpBB/phpbb/textreparser/plugins/group_description.php
+++ b/phpBB/phpbb/textreparser/plugins/group_description.php
@@ -18,7 +18,7 @@ class group_description extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_columns()
+ public function get_columns()
{
return array(
'id' => 'group_id',
@@ -30,7 +30,7 @@ class group_description extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_table_name()
+ public function get_table_name()
{
return GROUPS_TABLE;
}
diff --git a/phpBB/phpbb/textreparser/plugins/pm_text.php b/phpBB/phpbb/textreparser/plugins/pm_text.php
index f4d87525df..4d06a2878b 100644
--- a/phpBB/phpbb/textreparser/plugins/pm_text.php
+++ b/phpBB/phpbb/textreparser/plugins/pm_text.php
@@ -18,7 +18,7 @@ class pm_text extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_columns()
+ public function get_columns()
{
return array(
'id' => 'msg_id',
@@ -33,7 +33,7 @@ class pm_text extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_table_name()
+ public function get_table_name()
{
return PRIVMSGS_TABLE;
}
diff --git a/phpBB/phpbb/textreparser/plugins/poll_option.php b/phpBB/phpbb/textreparser/plugins/poll_option.php
index f074f1866d..cc28599737 100644
--- a/phpBB/phpbb/textreparser/plugins/poll_option.php
+++ b/phpBB/phpbb/textreparser/plugins/poll_option.php
@@ -18,7 +18,7 @@ class poll_option extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_columns()
+ public function get_columns()
{
return array(
'id' => 'poll_option_id',
@@ -43,7 +43,7 @@ class poll_option extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_table_name()
+ public function get_table_name()
{
return POLL_OPTIONS_TABLE;
}
diff --git a/phpBB/phpbb/textreparser/plugins/poll_title.php b/phpBB/phpbb/textreparser/plugins/poll_title.php
index e794780eba..6665d68847 100644
--- a/phpBB/phpbb/textreparser/plugins/poll_title.php
+++ b/phpBB/phpbb/textreparser/plugins/poll_title.php
@@ -18,7 +18,7 @@ class poll_title extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_columns()
+ public function get_columns()
{
return array(
'id' => 'topic_id',
@@ -43,7 +43,7 @@ class poll_title extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_table_name()
+ public function get_table_name()
{
return TOPICS_TABLE;
}
diff --git a/phpBB/phpbb/textreparser/plugins/post_text.php b/phpBB/phpbb/textreparser/plugins/post_text.php
index 2b16518b03..4a07c98cea 100644
--- a/phpBB/phpbb/textreparser/plugins/post_text.php
+++ b/phpBB/phpbb/textreparser/plugins/post_text.php
@@ -18,7 +18,7 @@ class post_text extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_columns()
+ public function get_columns()
{
return array(
'id' => 'post_id',
@@ -33,7 +33,7 @@ class post_text extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_table_name()
+ public function get_table_name()
{
return POSTS_TABLE;
}
diff --git a/phpBB/phpbb/textreparser/plugins/user_signature.php b/phpBB/phpbb/textreparser/plugins/user_signature.php
index 7a66f39ab6..db82d4089b 100644
--- a/phpBB/phpbb/textreparser/plugins/user_signature.php
+++ b/phpBB/phpbb/textreparser/plugins/user_signature.php
@@ -50,7 +50,7 @@ class user_signature extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_columns()
+ public function get_columns()
{
return array(
'id' => 'user_id',
@@ -63,7 +63,7 @@ class user_signature extends \phpbb\textreparser\row_based_plugin
/**
* {@inheritdoc}
*/
- protected function get_table_name()
+ public function get_table_name()
{
return USERS_TABLE;
}