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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
8edda550
Commit
8edda550
authored
Jun 09, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3758 from kartik-v/patch-7
Fix #3756: Convert values to float for number formatting
parents
a83d6829
516ba30b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
Formatter.php
framework/base/Formatter.php
+1
-1
No files found.
framework/CHANGELOG.md
View file @
8edda550
...
...
@@ -42,6 +42,7 @@ Yii Framework 2 Change Log
-
Bug #3716:
`DynamicModel::validateData()`
does not call
`validate()`
if the
`$rules`
parameter is empty (qiangxue)
-
Bug #3751: Fixed postgreSQL schema data for enum values, do not add values if there are none (makroxyz)
-
Bug #3752:
`QueryBuilder::batchInsert()`
does not typecast input values (qiangxue)
-
Bug #3756: Fix number formatting error for
`\yii\base\Formatter`
by converting strings to float (kartik-v)
-
Bug: Fixed inconsistent return of
`\yii\console\Application::runAction()`
(samdark)
-
Bug: URL encoding for the route parameter added to
`\yii\web\UrlManager`
(klimov-paul)
-
Bug: Fixed the bug that requesting protected or private action methods would cause 500 error instead of 404 (qiangxue)
...
...
framework/base/Formatter.php
View file @
8edda550
...
...
@@ -436,7 +436,7 @@ class Formatter extends Component
$ds
=
isset
(
$this
->
decimalSeparator
)
?
$this
->
decimalSeparator
:
'.'
;
$ts
=
isset
(
$this
->
thousandSeparator
)
?
$this
->
thousandSeparator
:
','
;
return
number_format
(
$value
,
$decimals
,
$ds
,
$ts
);
return
number_format
(
(
float
)
$value
,
$decimals
,
$ds
,
$ts
);
}
/**
...
...
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