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
4dbf1fe7
Commit
4dbf1fe7
authored
Jun 11, 2014
by
Erik_r
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Typo in function call #2359
parent
cf960e89
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
Formatter.php
framework/base/Formatter.php
+2
-3
No files found.
framework/base/Formatter.php
View file @
4dbf1fe7
...
...
@@ -1384,7 +1384,7 @@ class Formatter extends yii\base\Component
*/
public
function
asNumber
(
$value
,
$decimals
=
0
,
$roundIncr
=
null
,
$grouping
=
true
)
{
return
asDouble
(
$value
,
$decimals
,
$roundIncr
,
$grouping
);
return
$this
->
asDouble
(
$value
,
$decimals
,
$roundIncr
,
$grouping
);
}
public
function
ufNumber
(
$value
){
return
$this
->
ufDouble
(
$value
);
...
...
@@ -1400,7 +1400,7 @@ class Formatter extends yii\base\Component
*/
public
function
asDecimal
(
$value
,
$decimals
=
2
,
$roundIncr
=
null
,
$grouping
=
true
)
{
return
asDouble
(
$value
,
$decimals
,
$roundIncr
,
$grouping
);
return
$this
->
asDouble
(
$value
,
$decimals
,
$roundIncr
,
$grouping
);
}
public
function
ufDecimal
(
$value
){
return
$this
->
ufDouble
(
$value
);
...
...
@@ -1432,7 +1432,6 @@ class Formatter extends yii\base\Component
// if (true === false){
if
(
$this
->
_intlLoaded
){
$f
=
$this
->
createNumberFormatter
(
NumberFormatter
::
PERCENT
,
$format
);
// $f->setAttribute(NumberFormatter::ROUNDING_MODE, NumberFormatter::ROUND_HALFUP);
$f
->
setAttribute
(
NumberFormatter
::
MAX_FRACTION_DIGITS
,
$decimals
);
if
(
$decimals
<=
5
){
$f
->
setAttribute
(
NumberFormatter
::
MIN_FRACTION_DIGITS
,
$decimals
);
...
...
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