Release notes for f338a1cf
authorBartosz Dziewoński <matma.rex@gmail.com>
Wed, 14 Jan 2015 19:49:27 +0000 (11:49 -0800)
committerBartosz Dziewoński <matma.rex@gmail.com>
Wed, 14 Jan 2015 19:59:50 +0000 (19:59 +0000)
Change-Id: Iecf07aea6384b41d4ca4f115ea80644e7ca0bcac

RELEASE-NOTES-1.25

index 3132524..76295a9 100644 (file)
@@ -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 ==