Skip to content

Commit 78c300e

Browse files
author
Eugene Tupikov
committed
fix BC
1 parent d28cbeb commit 78c300e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Yii2 widget for handle multiple inputs for an attribute of model and tabular inp
88
[![License](https://poser.pugx.org/unclead/yii2-multiple-input/license)](https://packagist.org/packages/unclead/yii2-multiple-input)
99

1010
## Latest release
11-
The latest stable version of the extension is v2.17.0 Follow the [instruction](./UPGRADE.md) for upgrading from previous versions
11+
The latest stable version of the extension is v2.17.1 Follow the [instruction](./UPGRADE.md) for upgrading from previous versions
1212

1313
## Installation
1414
The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"yii2 tabular input"
1010
],
1111
"type": "yii2-extension",
12-
"version": "2.17.0",
12+
"version": "2.17.1",
1313
"license": "BSD-3-Clause",
1414
"support": {
1515
"issues": "https://github.com/unclead/yii2-multiple-input/issues?state=open",

examples/views/tabular-input.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
],
6666
[
6767
'name' => 'date',
68-
'type' => \kartik\date\DatePicker::class,
68+
'type' => '\kartik\date\DatePicker',
6969
'title' => 'Day',
7070
'options' => [
7171
'pluginOptions' => [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery.multipleInput",
3-
"version": "2.17.0",
3+
"version": "2.17.1",
44
"description": "jQuery multipleInput",
55
"scripts": {
66
"build": "npm install && (gulp || node node_modules/gulp/bin/gulp.js)"

src/components/BaseColumn.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ protected function renderDefault($name, $value, $options)
529529
{
530530
$type = $this->type;
531531

532-
if (method_exists(Html::class, $type)) {
532+
if (method_exists('yii\helpers\Html', $type)) {
533533
$options['tabindex'] = self::TABINDEX;
534534

535535
if ($this->renderer->isBootstrapTheme()) {

0 commit comments

Comments
 (0)