Merge remote-tracking branch 'origin/main' into feat/new-pvevm-disk-options

# Conflicts:
#	docs/review/findings.json
This commit is contained in:
Clint Branham
2026-05-22 14:15:20 -05:00
3 changed files with 134 additions and 0 deletions
@@ -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;