Index: trunk/extensions/LiquidThreads/classes/NewMessagesController.php |
— | — | @@ -151,7 +151,7 @@ |
152 | 152 | */ |
153 | 153 | static function writeMessageStateForUpdatedThread( $t, $type, $changeUser ) { |
154 | 154 | wfDebugLog( 'LiquidThreads', 'Doing notifications' ); |
155 | | - wfProfileIn( 'writeMessageStateForUpdatedThread' ); |
| 155 | + wfProfileIn( __METHOD__ ); |
156 | 156 | |
157 | 157 | // Pull users to update the message state for, including whether or not a |
158 | 158 | // user_message_state row exists for them, and whether or not to send an email |
— | — | @@ -224,7 +224,7 @@ |
225 | 225 | if ( count( $notifyUsers ) && $wgLqtEnotif ) { |
226 | 226 | self::notifyUsersByMail( $t, $notifyUsers, wfTimestampNow(), $type ); |
227 | 227 | } |
228 | | - wfProfileOut( 'writeMessageStateForUpdatedThread' ); |
| 228 | + wfProfileOut( __METHOD__ ); |
229 | 229 | } |
230 | 230 | |
231 | 231 | // Would refactor User::decodeOptions, but the whole point is that this is |