From 063ad5bf183e760deda240d3074c2111aaf85659 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Thu, 26 Jan 2017 23:16:48 +0100 Subject: [PATCH] Make the function not static --- nntmux/processing/ProcessReleasesMultiGroup.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nntmux/processing/ProcessReleasesMultiGroup.php b/nntmux/processing/ProcessReleasesMultiGroup.php index a96e0ff4d..a7e1f10d0 100644 --- a/nntmux/processing/ProcessReleasesMultiGroup.php +++ b/nntmux/processing/ProcessReleasesMultiGroup.php @@ -50,7 +50,7 @@ class ProcessReleasesMultiGroup extends ProcessReleases */ protected function initiateTableNames($groupID) { - $this->tables = self::returnTableNames(); + $this->tables = $this->returnTableNames(); } /** @@ -58,7 +58,7 @@ class ProcessReleasesMultiGroup extends ProcessReleases * * @return array */ - public static function returnTableNames() + public function returnTableNames() { return [ 'cname' => 'multigroup_collections',