mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-29 00:30:44 +00:00
Insert last modified text as HTML
mw.msg can return things with <br />, which we want to be interpreted as HTML rather than just escaped as text. Bug: 73571 Change-Id: I7861432d9361e01f9def0578c342e60715c3d764
This commit is contained in:
parent
d27edd8d5a
commit
94fadaec4a
|
@ -1547,7 +1547,7 @@ ve.init.mw.ViewPageTarget.prototype.replacePageContent = function (
|
|||
);
|
||||
}
|
||||
|
||||
$( '#footer-info-lastmod' ).text( ' ' + mw.msg(
|
||||
$( '#footer-info-lastmod' ).html( ' ' + mw.msg(
|
||||
'lastmodifiedat',
|
||||
lastModified.date,
|
||||
lastModified.time
|
||||
|
|
Loading…
Reference in a new issue