use new urlencode function

This commit is contained in:
2023-09-13 20:04:43 +10:00
parent b029574fa5
commit 8ed07e539f

View File

@@ -175,7 +175,7 @@ class Media extends Model
// Loop through the array and encode each value
foreach ($decodedValue as &$item) {
if (is_string($item)) {
$item = urlencode($item);
$item = customUrlEncode($item);
}
}
}