[SS-2016-016] FIX Properly escape backURL for template injection

This commit is contained in:
Daniel Hensby 2016-10-27 16:03:25 +01:00
parent c914dde7d1
commit 17097a4d11
No known key found for this signature in database
GPG Key ID: B00D1E9767F0B06E

View File

@ -204,7 +204,7 @@ PHP
'<p>Login success. If you are not automatically redirected '.
'<a target="_top" href="{link}">click here</a></p>',
'Login message displayed in the cms popup once a user has re-authenticated themselves',
array('link' => $backURL)
array('link' => Convert::raw2att($backURL))
)
));