mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX Escaping sprintf() arguments in ComplexTableField to avoid extraneous % characters in a referrer URL messing up the sprintf() invocation
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@93745 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
389adf2f2d
commit
f3db094874
@ -814,7 +814,7 @@ class ComplexTableField_ItemRequest extends RequestHandler {
|
|||||||
$referrer = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : null;
|
$referrer = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : null;
|
||||||
|
|
||||||
$closeLink = sprintf(
|
$closeLink = sprintf(
|
||||||
'<small><a href="' . $referrer . '" onclick="javascript:window.top.GB_hide(); return false;">(%s)</a></small>',
|
'<small><a href="' . str_replace('%', '%%', $referrer) . '" onclick="javascript:window.top.GB_hide(); return false;">(%s)</a></small>',
|
||||||
_t('ComplexTableField.CLOSEPOPUP', 'Close Popup')
|
_t('ComplexTableField.CLOSEPOPUP', 'Close Popup')
|
||||||
);
|
);
|
||||||
$message = sprintf(
|
$message = sprintf(
|
||||||
|
Loading…
Reference in New Issue
Block a user