diff --git a/ChangeLog b/ChangeLog index abe062ebb7..1e821166cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ phpMyAdmin - ChangeLog ====================== 4.1.11.0 (not yet released) +- bug #4335 reCaptcha problem (4.1.10 regression) 4.1.10.0 (2014-03-22) - bug #4301 Grid edit: "SELECT" query is replaced by "UPDATE" query after edit diff --git a/libraries/Header.class.php b/libraries/Header.class.php index 486afe2a11..8b7d9624e9 100644 --- a/libraries/Header.class.php +++ b/libraries/Header.class.php @@ -474,7 +474,7 @@ class PMA_Header "Content-Security-Policy: default-src 'self' " . ($use_captcha ? 'https://www.google.com ' : ' ') . $GLOBALS['cfg']['CSPAllow'] . ';' - . "script-src 'self' 'unsafe-inline' 'unsafe-eval'" + . "script-src 'self' 'unsafe-inline' 'unsafe-eval' " . ($use_captcha ? 'https://www.google.com ' : ' ') . ";" . "style-src 'self' 'unsafe-inline' "