- 15 Nov, 2014 3 commits
-
-
wenbin1989 authored
Fix batchInsert bug in oci. default batchInsert sql is ``` insert into tableName(col1, col2, col3...) value(`col11`, `col12`,`col13`.... ),(`col21`, `col22`,`col23`.... ); ``` which is illegal in oracle db. Change it to ``` insert into tableName(col1, col2, col3...) select 'col11', 'col12', 'col13' from dual union select 'col21', 'col22', 'col23' from dual union select 'col31', 'col32', 'col33' from dual; ```
-
wenbin1989 authored
oracle db doesn't support `ON UPDATE` in FOREIGN KEY. remove `ON UPDATE` section in method `addForeignKey`.
-
wenbin1989 authored
fix oci bugs: \yii\db\oci\Schema::findColumns($table) return true when table doesn't exist When table doesn't exist, query in method `findColumns` return empty array instead of throw a exception.
-
- 14 Nov, 2014 3 commits
-
-
Carsten Brandt authored
thanks to @pana1990 close #6060
-
Qiang Xue authored
-
Serge Postrash authored
Use case: ``` echo GridView::widget([ ... 'columns' => [ ... [ 'attribute' => 'created_at', 'label' => '<span data-toggle="tooltip" class="glyphicon glyphicon-time" title="'.Yii::t('app', 'Created At').'"></span>', 'encodeLabel' => false, ... ], ```
-
- 13 Nov, 2014 1 commit
-
-
Andrei Chugunov authored
Some Annotation Typos close #6029
-
- 12 Nov, 2014 3 commits
-
-
Qiang Xue authored
Fixes #5799: `yii\bootstrap\ButtonGroup::buttons` can take all options that are supported by `yii\bootstrap\Button`
-
Alexander Makarov authored
-
Qiang Xue authored
Fixes #6018: When setting the `encode` option via `yii\widgets\ActiveRecord::errorOptions`, it works the other way around [skip ci]
-
- 11 Nov, 2014 3 commits
-
-
Klimov Paul authored
-
Qiang Xue authored
-
Klimov Paul authored
-
- 10 Nov, 2014 7 commits
- 09 Nov, 2014 1 commit
-
-
Alexander Makarov authored
Fixes #5863: Selecting all individual `yii\grid\CheckboxColumn` checkboxes in grid view wasn't resulting in "all" checkbox selected
-
- 08 Nov, 2014 1 commit
-
-
Qiang Xue authored
-
- 07 Nov, 2014 6 commits
-
-
Qiang Xue authored
-
Qiang Xue authored
Fixes #5688: Added optional `$formName` to `Model::loadMultiple()` to support customizing form name directly
-
Qiang Xue authored
Fixes #5768: When setting `data-confirm` attribute to a submit button, clicking on the button would not trigger form submission
-
Qiang Xue authored
-
Tomek Romik authored
-
Alexander Makarov authored
Fixes #4889: Application was getting into redirect loop when user wasn't allowed accessing login page. Now shows 403
-
- 06 Nov, 2014 6 commits
-
-
Alexander Makarov authored
-
Peter Kokot authored
-
Denis M authored
-
Alexander Makarov authored
Fixes #5954: `yii message` command now shows user friendly error if it's not able to parse source file
-
Alexander Makarov authored
-
Qiang Xue authored
-
- 05 Nov, 2014 3 commits
-
-
Qiang Xue authored
Fixes #5925: `ArrayHelper::htmlEncode()` does not work properly when the value being encoded is a nested array
-
Vasiliy Baukin authored
Recursive method call must have the same parameters as the first call.
-
Nikola Basic authored
-
- 04 Nov, 2014 1 commit
-
-
munawer authored
-
- 03 Nov, 2014 2 commits
-
-
Carsten Brandt authored
-
Carsten Brandt authored
Added note about bootstrap version.
-