mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
Merge "Don't put a whole User object in extra[mentioned-users]"
This commit is contained in:
commit
c1f8165d01
|
@ -124,7 +124,7 @@ abstract class EchoDiscussionParser {
|
||||||
if ( $count >= $wgEchoMaxMentionsInEditSummary ) {
|
if ( $count >= $wgEchoMaxMentionsInEditSummary ) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
$mentionedUsers[] = $summaryUser;
|
$mentionedUsers[$summaryUser->getId()] = $summaryUser->getId();
|
||||||
$count++;
|
$count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue