2006-05-15 Ingmar Schlecht <ingmar@typo3.org>
- * Fixed bug #1374: Mailforms didn't work with <input type="image"> submit buttons. (Thanks to Thorsten Kahler and Rupert Germann!)
+ * Fixed bug #1374: Mailforms didn't work with <input type="image"> submit buttons. (Thanks to Thorsten Kahler and Rupert Germann!)
+ * Changed square brackets "[" and "]" in URLs generated by media/scipts/fe_adminLib.inc to the urlencoded equivalents "%5B" and "%5D"
2006-05-15 Martin Kutschker <martin.t.kutschker@blackbox.net>
$recCopy = $r;
$string='&cmd=setfixed&sFK='.rawurlencode($theKey).'&rU='.$r['uid'];
while(list($fieldName,$fieldValue)=each($data)) {
- $string.='&fD['.$fieldName.']='.rawurlencode($fieldValue);
+ $string.='&fD%5B'.$fieldName.'%5D='.rawurlencode($fieldValue);
$recCopy[$fieldName]=$fieldValue;
}
$string.='&aC='.$this->setfixedHash($recCopy,$data['_FIELDLIST']);