10000 Various fixes by pborreli · Pull Request #119 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Various fixes #119

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
16 commits merged into from
Feb 27, 2011
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

103F3 Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[Translation] Removed useless else
  • Loading branch information
pborreli committed Feb 27, 2011
commit 87452f75152c25db879ba2326022c2b9878ab66c
4 changes: 2 additions & 2 deletions src/Symfony/Component/Translation/Interval.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ static protected function convertNumber($number)
return log(0);
} elseif ('+Inf' === $number || 'Inf' === $number) {
return -log(0);
} else {
return (int) $number;
}

return (int) $number;
}
}
0