Bug #23554 » rfc17533-branch44.diff
typo3/sysext/cms/tslib/class.tslib_adminpanel.php (Arbeitskopie) | ||
---|---|---|
if (is_array($value)) {
|
||
$query .= $this->getHiddenFields($key, $value);
|
||
} else {
|
||
$query .= '<input type="hidden" name="' . $key . '" value="' . htmlspecialchars($value) . '">' . LF;
|
||
$query .= '<input type="hidden" name="' . htmlspecialchars($key) . '" value="' . htmlspecialchars($value) . '">' . LF;
|
||
}
|
||
}
|
||
}
|
||
... | ... | |
if (is_array($v)) {
|
||
$out .= $this->getHiddenFields($key . '[' . $k . ']', $v);
|
||
} else {
|
||
$out .= '<input type="hidden" name="' . $key . '[' . $k . ']" value="' . htmlspecialchars($v) . '">' . LF;
|
||
$out .= '<input type="hidden" name="' . htmlspecialchars($key) . '[' . $k . ']" value="' . htmlspecialchars($v) . '">' . LF;
|
||
}
|
||
}
|
||
return $out;
|
- « Previous
- 1
- 2
- 3
- 4
- Next »