Merge "resourceloader: Add basic tests for getScript() and buildContent()"
[lhc/web/wiklou.git] / includes / jobqueue / jobs / ActivityUpdateJob.php
index 13e36d8..6357967 100644 (file)
@@ -55,10 +55,10 @@ class ActivityUpdateJob extends Job {
 
                $dbw = wfGetDB( DB_MASTER );
                $dbw->update( 'watchlist',
-                       array(
+                       [
                                'wl_notificationtimestamp' => $dbw->timestampOrNull( $this->params['notifTime'] )
-                       ),
-                       array(
+                       ],
+                       [
                                'wl_user' => $this->params['userid'],
                                'wl_namespace' => $this->title->getNamespace(),
                                'wl_title' => $this->title->getDBkey(),
@@ -69,7 +69,7 @@ class ActivityUpdateJob extends Job {
                                // is non-NULL, make sure not to set it back in time or set it to
                                // NULL when newer revisions were in fact added to the page.
                                'wl_notificationtimestamp < ' . $dbw->addQuotes( $dbw->timestamp( $casTimestamp ) )
-                       ),
+                       ],
                        __METHOD__
                );
        }