diff options
Diffstat (limited to 'includes/WatchedItem.php')
-rw-r--r-- | includes/WatchedItem.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/WatchedItem.php b/includes/WatchedItem.php index a2c1f036..d1c15296 100644 --- a/includes/WatchedItem.php +++ b/includes/WatchedItem.php @@ -62,7 +62,7 @@ class WatchedItem { 'wl_user' => $this->id, 'wl_namespace' => MWNamespace::getSubject($this->ns), 'wl_title' => $this->ti, - 'wl_notificationtimestamp' => NULL + 'wl_notificationtimestamp' => null ), __METHOD__, 'IGNORE' ); // Every single watched page needs now to be listed in watchlist; @@ -72,7 +72,7 @@ class WatchedItem { 'wl_user' => $this->id, 'wl_namespace' => MWNamespace::getTalk($this->ns), 'wl_title' => $this->ti, - 'wl_notificationtimestamp' => NULL + 'wl_notificationtimestamp' => null ), __METHOD__, 'IGNORE' ); wfProfileOut( __METHOD__ ); |