mirror of
https://github.com/gtbu/Typesetter-5.3-p8.git
synced 2024-11-21 13:59:11 +01:00
Update Remote.php
number_format(): Passing null to parameter #1 ($num) of type float is deprecated
This commit is contained in:
parent
c61d9eb6e8
commit
10a6dbb30b
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ class Remote extends \gp\admin\Addon\Install{
|
|||
echo '</td><td>';
|
||||
echo $row['version'];
|
||||
echo '</td><td class="nowrap">';
|
||||
echo sprintf($langmessage['_downloads'],number_format($row['downloads']));
|
||||
echo sprintf($langmessage['_downloads'],number_format(floatval($row['downloads'])) );
|
||||
echo '<br/>';
|
||||
$this->CurrentRating($row['rating_weighted']);
|
||||
echo '<br/>';
|
||||
|
|
Loading…
Reference in a new issue