Merge "Convert article delete to use OOUI"
[lhc/web/wiklou.git] / includes / jobqueue / jobs / ActivityUpdateJob.php
index 13e36d8..da4ec23 100644 (file)
@@ -16,7 +16,6 @@
  * http://www.gnu.org/copyleft/gpl.html
  *
  * @file
- * @author Aaron Schulz
  * @ingroup JobQueue
  */
 
@@ -55,10 +54,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 +68,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__
                );
        }