Explorar o código

Fix formatting on backup exclusions textbox

Fixes #446
Robert Zollner %!s(int64=6) %!d(string=hai) anos
pai
achega
2102180480
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      web/edit/backup/exclusions/index.php

+ 1 - 1
web/edit/backup/exclusions/index.php

@@ -21,7 +21,7 @@ unset($output);
 $v_username = $user;
 foreach ($data['WEB'] as $key => $value) {
     if (!empty($value)){
-        $v_web .= $key . ":" . $value. "\n";
+        $v_web .= $key . ":" . str_replace(",", ":", $value) . "\n";
     } else {
         $v_web .= $key . "\n";
     }