Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
777e22c1
Commit
777e22c1
authored
Jan 15, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #1959: `Html::activeCheckbox` wasn't respecting custom values for checked/unchecked state
parent
42b74bd5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
3 deletions
+13
-3
CHANGELOG.md
framework/CHANGELOG.md
+1
-1
BaseHtml.php
framework/helpers/BaseHtml.php
+12
-2
No files found.
framework/CHANGELOG.md
View file @
777e22c1
...
...
@@ -27,7 +27,7 @@ Yii Framework 2 Change Log
-
Bug #1827: Debugger toolbar is loaded twice if an action is calling
`run()`
to execute another action (qiangxue)
-
Bug #1870: Validation errors weren't properly translated when using clientside validation (samdark)
-
Bug #1937: Fixed wrong behavior or advanced app's
`init --env`
when called without parameter actually specified (samdark)
-
Bug #1959:
`Html::activeCheckbox`
wasn't respecting custom values for checked/unc
k
ecked state (klevron, samdark)
-
Bug #1959:
`Html::activeCheckbox`
wasn't respecting custom values for checked/unc
h
ecked state (klevron, samdark)
-
Bug #1965:
`Controller::findLayoutFile()`
returns incorrect file path when layout name starts with a slash (qiangxue)
-
Bug: Fixed
`Call to a member function registerAssetFiles() on a non-object`
in case of wrong
`sourcePath`
for an asset bundle (samdark)
-
Bug: Fixed incorrect event name for
`yii\jui\Spinner`
(samdark)
...
...
framework/helpers/BaseHtml.php
View file @
777e22c1
...
...
@@ -1126,10 +1126,17 @@ class BaseHtml
public
static
function
activeRadio
(
$model
,
$attribute
,
$options
=
[])
{
$name
=
isset
(
$options
[
'name'
])
?
$options
[
'name'
]
:
static
::
getInputName
(
$model
,
$attribute
);
$checked
=
static
::
getAttributeValue
(
$model
,
$attribute
);
$value
=
static
::
getAttributeValue
(
$model
,
$attribute
);
if
(
!
array_key_exists
(
'value'
,
$options
))
{
$options
[
'value'
]
=
'1'
;
}
if
(
!
array_key_exists
(
'uncheck'
,
$options
))
{
$options
[
'uncheck'
]
=
'0'
;
}
$checked
=
$value
==
$options
[
'value'
];
if
(
!
array_key_exists
(
'id'
,
$options
))
{
$options
[
'id'
]
=
static
::
getInputId
(
$model
,
$attribute
);
}
...
...
@@ -1163,11 +1170,14 @@ class BaseHtml
$name
=
isset
(
$options
[
'name'
])
?
$options
[
'name'
]
:
static
::
getInputName
(
$model
,
$attribute
);
$value
=
static
::
getAttributeValue
(
$model
,
$attribute
);
if
(
!
array_key_exists
(
'value'
,
$options
))
{
$options
[
'value'
]
=
'1'
;
}
if
(
!
array_key_exists
(
'uncheck'
,
$options
))
{
$options
[
'uncheck'
]
=
'0'
;
}
$checked
=
(
$value
!=
$options
[
'uncheck'
])
;
$checked
=
$value
==
$options
[
'value'
]
;
if
(
!
array_key_exists
(
'id'
,
$options
))
{
$options
[
'id'
]
=
static
::
getInputId
(
$model
,
$attribute
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment