Brian Wolff has uploaded a new change for review. https://gerrit.wikimedia.org/r/98563
Change subject: Add missing subjectspace pages to watchlist on update. ...................................................................... Add missing subjectspace pages to watchlist on update. Previously this only fixed the other direction, if a talk page was missing, but it still complaining for a missing subject page. Discovered by Joergi on irc Change-Id: I439eb0c4a74260157f9542470f01f189fe9081c5 --- M includes/installer/MysqlUpdater.php 1 file changed, 10 insertions(+), 0 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core refs/changes/63/98563/1 diff --git a/includes/installer/MysqlUpdater.php b/includes/installer/MysqlUpdater.php index cc5313a..ffa4900 100644 --- a/includes/installer/MysqlUpdater.php +++ b/includes/installer/MysqlUpdater.php @@ -390,6 +390,16 @@ 'wl_notificationtimestamp' => 'wl_notificationtimestamp' ), array( 'NOT (wl_namespace & 1)' ), __METHOD__, 'IGNORE' ); $this->output( "done.\n" ); + + $this->output( "Adding missing watchlist subject page rows... " ); + $this->db->insertSelect( 'watchlist', 'watchlist', + array( + 'wl_user' => 'wl_user', + 'wl_namespace' => 'wl_namespace & ~1', + 'wl_title' => 'wl_title', + 'wl_notificationtimestamp' => 'wl_notificationtimestamp' + ), array( 'wl_namespace & 1' ), __METHOD__, 'IGNORE' ); + $this->output( "done.\n" ); } function doSchemaRestructuring() { -- To view, visit https://gerrit.wikimedia.org/r/98563 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I439eb0c4a74260157f9542470f01f189fe9081c5 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/core Gerrit-Branch: master Gerrit-Owner: Brian Wolff <bawolff...@gmail.com> _______________________________________________ MediaWiki-commits mailing list MediaWiki-commits@lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits