Skip to content

Commit e03de09

Browse files
authored
Merge pull request #250 from sugarcrm/SUS-320
SUS-320: Tidbit has a deprecation warning in CUBA
2 parents 3a2510d + 3fefbeb commit e03de09

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

install_functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ function includeDataInDir($path, $files_pattern = '/^[\w]+\.php$/')
129129
*/
130130
function showProgress($prefix, $done, $total, $size = 40)
131131
{
132-
$perc = (double) ($done / $total);
132+
$perc = (float) ($done / $total);
133133
$bar = floor($perc * $size);
134134
$progress = str_repeat("=", $bar);
135135
$arrow = "";

0 commit comments

Comments
 (0)