From 694343a9c0114b6f741a34fe1cb0d81763e9607a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bartosz=20Dziewo=C5=84ski?= Date: Wed, 14 Jan 2015 11:49:27 -0800 Subject: [PATCH] Release notes for f338a1cf Change-Id: Iecf07aea6384b41d4ca4f115ea80644e7ca0bcac --- RELEASE-NOTES-1.25 | 7 +++++++ 1 file changed, 7 insertions(+) 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 == -- 2.20.1