Skip to content

Commit 1ddc637

Browse files
author
Kristan Kenney
committed
Fix syntax error
1 parent ac85a04 commit 1ddc637

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

web/update/hestia/index.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@
1919

2020
if ($return_var != 0) {
2121
$error = implode('<br>', $output);
22-
if (empty($error)) $error = sprintf(_('Error: %s update failed',$v_pkg);
22+
if (empty($error)) {
23+
$error = sprintf(_('Error: %s update failed',$v_pkg));
2324
$_SESSION['error_msg'] = $error;
25+
}
2426
}
2527
unset($output);
2628
}

0 commit comments

Comments
 (0)