SelfService: use ! as an Array delimiter...

...for custom PS serialization
This commit is contained in:
Thomas Gelf 2017-07-13 17:52:46 +02:00
parent 0b5534d1d1
commit 09a5905147

View File

@ -171,7 +171,7 @@ class SelfServiceController extends ActionController
if (is_bool($value)) {
$value = $this->makePowerShellBoolean($value);
} elseif (is_array($value)) {
$value = implode(',', $value);
$value = implode('!', $value);
}
$plain .= "$key: $value\r\n";
}