From: Bartosz Dziewoński Date: Wed, 14 Jan 2015 19:49:27 +0000 (-0800) Subject: Release notes for f338a1cf X-Git-Tag: 1.31.0-rc.0~12681 X-Git-Url: http://git.cyclocoop.org/%22.%24image2.%22?a=commitdiff_plain;h=694343a9c0114b6f741a34fe1cb0d81763e9607a;p=lhc%2Fweb%2Fwiklou.git Release notes for f338a1cf Change-Id: Iecf07aea6384b41d4ca4f115ea80644e7ca0bcac --- diff --git a/RELEASE-NOTES-1.25 b/RELEASE-NOTES-1.25 index 3132524a77..76295a9882 100644 --- a/RELEASE-NOTES-1.25 +++ b/RELEASE-NOTES-1.25 @@ -309,6 +309,13 @@ changes to languages because of Bugzilla reports. * The 'mediawiki.action.edit' ResourceLoader module no longer generates the edit toolbar, which has been moved to a separate 'mediawiki.toolbar' module. If you relied on this behavior, update your scripts' dependencies. +* HTMLForm's 'vform' display style has been separated to a subclass. Therefore: + * HTMLForm::isVForm() is now deprecated. + * You can no longer do this: + $form = new HTMLForm( … ); + $form->setDisplayFormat( 'vform' ); // throws exception + Instead, do this: + $form = HTMLForm::factory( 'vform', … ); == Compatibility ==