1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-06 14:57:10 +02:00
This commit is contained in:
Ryan Cramer
2025-02-14 10:00:01 -05:00
parent f88350baa5
commit 69270a31b0

View File

@@ -465,7 +465,7 @@ abstract class DatabaseQuery extends WireData {
if(is_array($value)) {
$curValue = array_merge($curValue, $value);
} else {
$curValue[] = trim($value, ", ");
$curValue[] = trim("$value", ", ");
}
$this->set($method, $curValue);
@@ -756,4 +756,3 @@ abstract class DatabaseQuery extends WireData {
}
}