jenkins-bot has submitted this change and it was merged.

Change subject: Fix use of $updater->addExtensionTable
......................................................................


Fix use of $updater->addExtensionTable

This thing only expects 2 params..
So only give it 2 params

Change-Id: I5e7fa787e31da166fa6557536517ab6cc8932ca6
---
M Newsletter.hooks.php
1 file changed, 4 insertions(+), 4 deletions(-)

Approvals:
  01tonythomas: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/Newsletter.hooks.php b/Newsletter.hooks.php
index 3d12f57..b14ae42 100755
--- a/Newsletter.hooks.php
+++ b/Newsletter.hooks.php
@@ -68,10 +68,10 @@
         * @return bool
         */
        public static function onLoadExtensionSchemaUpdates( DatabaseUpdater 
$updater ) {
-               $updater->addExtensionTable( 'nl_newsletters', __DIR__ . 
'/sql/nl_newsletters.sql', true );
-               $updater->addExtensionTable( 'nl_issues', __DIR__ . 
'/sql/nl_issues.sql', true );
-               $updater->addExtensionTable( 'nl_subscriptions', __DIR__ . 
'/sql/nl_subscriptions.sql', true );
-               $updater->addExtensionTable( 'nl_publishers', __DIR__ . 
'/sql/nl_publishers.sql', true );
+               $updater->addExtensionTable( 'nl_newsletters', __DIR__ . 
'/sql/nl_newsletters.sql' );
+               $updater->addExtensionTable( 'nl_issues', __DIR__ . 
'/sql/nl_issues.sql' );
+               $updater->addExtensionTable( 'nl_subscriptions', __DIR__ . 
'/sql/nl_subscriptions.sql' );
+               $updater->addExtensionTable( 'nl_publishers', __DIR__ . 
'/sql/nl_publishers.sql' );
 
                return true;
        }

-- 
To view, visit https://gerrit.wikimedia.org/r/234130
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I5e7fa787e31da166fa6557536517ab6cc8932ca6
Gerrit-PatchSet: 5
Gerrit-Project: mediawiki/extensions/Newsletter
Gerrit-Branch: master
Gerrit-Owner: Addshore <addshorew...@gmail.com>
Gerrit-Reviewer: 01tonythomas <01tonytho...@gmail.com>
Gerrit-Reviewer: jenkins-bot <>

_______________________________________________
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to