Index: trunk/extensions/LiquidThreads/classes/Thread.php |
— | — | @@ -112,7 +112,7 @@ |
113 | 113 | NewMessages::writeMessageStateForUpdatedThread( $thread, $change_type, $wgUser ); |
114 | 114 | |
115 | 115 | if ( $wgUser->getOption( 'lqt-watch-threads', false ) ) { |
116 | | - WatchAction:doWatch( $thread->topmostThread()->root()->getTitle(), $wgUser ); |
| 116 | + WatchAction::doWatch( $thread->topmostThread()->root()->getTitle(), $wgUser ); |
117 | 117 | } |
118 | 118 | |
119 | 119 | return $thread; |
Index: trunk/extensions/MultilingualLiquidThreads/LiquidThreads/classes/Thread.php |
— | — | @@ -113,7 +113,7 @@ |
114 | 114 | NewMessages::writeMessageStateForUpdatedThread( $thread, $change_type, $wgUser ); |
115 | 115 | |
116 | 116 | if ( $wgUser->getOption( 'lqt-watch-threads', false ) ) { |
117 | | - WatchAction:doWatch( $thread->topmostThread()->root()->getTitle(), $wgUser ); |
| 117 | + WatchAction::doWatch( $thread->topmostThread()->root()->getTitle(), $wgUser ); |
118 | 118 | } |
119 | 119 | |
120 | 120 | return $thread; |
Index: trunk/extensions/MetavidWiki/includes/articlepages/MV_DataPage.php |
— | — | @@ -63,9 +63,9 @@ |
64 | 64 | if ( $confirm ) { |
65 | 65 | $this->doDelete( $reason ); |
66 | 66 | if ( $wgRequest->getCheck( 'wpWatch' ) ) { |
67 | | - WatchAction:doWatch( $this->mTitle, $wgUser ); |
| 67 | + WatchAction::doWatch( $this->mTitle, $wgUser ); |
68 | 68 | } elseif ( $this->mTitle->userIsWatching() ) { |
69 | | - WatchAction:doUnwatch( $this->mTitle, $wgUser ); |
| 69 | + WatchAction::doUnwatch( $this->mTitle, $wgUser ); |
70 | 70 | } |
71 | 71 | return; |
72 | 72 | } |