Skip to content

Commit 2102180

Browse files
committed
Fix formatting on backup exclusions textbox
Fixes hestiacp#446
1 parent ae754f9 commit 2102180

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/edit/backup/exclusions/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
$v_username = $user;
2222
foreach ($data['WEB'] as $key => $value) {
2323
if (!empty($value)){
24-
$v_web .= $key . ":" . $value. "\n";
24+
$v_web .= $key . ":" . str_replace(",", ":", $value) . "\n";
2525
} else {
2626
$v_web .= $key . "\n";
2727
}

0 commit comments

Comments
 (0)