mirror of
https://github.com/GoodOlClint/PSProxmoxVE.git
synced 2026-08-18 09:03:14 +00:00
Merge remote-tracking branch 'origin/main' into feat/new-pvevm-disk-options
# Conflicts: # docs/review/findings.json
This commit is contained in:
@@ -169,6 +169,11 @@ namespace PSProxmoxVE.Core.Client
|
||||
{
|
||||
case '&': sb.Append("%26"); break;
|
||||
case '=': sb.Append("%3D"); break;
|
||||
// PVE's form parser treats a raw ';' as a field separator (the
|
||||
// historical alternative to '&'), so an unencoded ';' inside a value
|
||||
// (e.g. boot=order=scsi0;ide2) splits the value into bogus extra
|
||||
// fields. Encode it so the value arrives intact.
|
||||
case ';': sb.Append("%3B"); break;
|
||||
case '+': sb.Append("%2B"); break;
|
||||
case ' ': sb.Append('+'); break;
|
||||
case '%': sb.Append("%25"); break;
|
||||
|
||||
Reference in New Issue
Block a user