* Build 209

This commit is contained in:
Samuel Georges 2015-02-25 19:10:42 +11:00
parent a748eb1b23
commit e6acb54d03
2 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,6 @@
* **Build 209** (2015-02-25)
- Added new form field type `section` for dividing groups of other fields (see Backend > Forms docs).
* **Build 206** (2015-02-21) * **Build 206** (2015-02-21)
- The back-end code editor now supports the use of [Emmet](http://emmet.io/). - The back-end code editor now supports the use of [Emmet](http://emmet.io/).
- Added the ability to prune Event and Request log records. - Added the ability to prune Event and Request log records.

View File

@ -3,9 +3,9 @@
use App; use App;
use Str; use Str;
use Lang; use Lang;
use Form as FormHelper;
use Input; use Input;
use Event; use Event;
use Form as FormHelper;
use Backend\Classes\FormTabs; use Backend\Classes\FormTabs;
use Backend\Classes\FormField; use Backend\Classes\FormField;
use Backend\Classes\WidgetBase; use Backend\Classes\WidgetBase;
@ -23,7 +23,6 @@ use October\Rain\Database\Model;
*/ */
class Form extends WidgetBase class Form extends WidgetBase
{ {
/** /**
* {@inheritDoc} * {@inheritDoc}
*/ */