Auto-compact stock entries (closes #1343)

This commit is contained in:
Bernd Bestel
2021-07-11 21:06:05 +02:00
parent 696e9b3e28
commit 55807bfc94
4 changed files with 84 additions and 2 deletions

View File

@@ -229,7 +229,10 @@ class BaseController
}
// Allow some special chars
$value = str_replace('&', '&', $value);
if (!is_array($value))
{
$value = str_replace('&', '&', $value);
}
}
return $requestBody;