diff options
author | Tristan Darricau <github@nicofuma.fr> | 2017-03-19 18:11:40 +0100 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2017-03-19 18:11:40 +0100 |
commit | 224330f3a5e96c766e9438392ca2f20003533889 (patch) | |
tree | 5594713a92ccd3f1c2817c769122671feda66a2a /phpBB | |
parent | 552da2e80575c7db28449fd292d6bfa9b8f4b036 (diff) | |
parent | 74f1b19dfe955f70fcc857e4bbd8921ec27dc82c (diff) | |
download | forums-224330f3a5e96c766e9438392ca2f20003533889.tar forums-224330f3a5e96c766e9438392ca2f20003533889.tar.gz forums-224330f3a5e96c766e9438392ca2f20003533889.tar.bz2 forums-224330f3a5e96c766e9438392ca2f20003533889.tar.xz forums-224330f3a5e96c766e9438392ca2f20003533889.zip |
Merge pull request #4740 from rubencm/ticket/14974
[ticket/14974] Make cookie notice configurable via language files
* rubencm/ticket/14974:
[ticket/14974] make cookie notice configurable via language files
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/language/en/common.php | 1 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/overall_footer.html | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/language/en/common.php b/phpBB/language/en/common.php index a04a06331b..709b7d9731 100644 --- a/phpBB/language/en/common.php +++ b/phpBB/language/en/common.php @@ -181,6 +181,7 @@ $lang = array_merge($lang, array( 'COOKIE_CONSENT_INFO' => 'Learn more', 'COOKIE_CONSENT_MSG' => 'This website uses cookies to ensure you get the best experience on our website.', 'COOKIE_CONSENT_OK' => 'Got it!', + 'COOKIE_CONSENT_HREF' => 'http://cookiesandyou.com', 'COOKIES_DELETED' => 'All board cookies successfully deleted.', 'CURRENT_TIME' => 'It is currently %s', diff --git a/phpBB/styles/prosilver/template/overall_footer.html b/phpBB/styles/prosilver/template/overall_footer.html index 413c93f79a..97a21f9a6e 100644 --- a/phpBB/styles/prosilver/template/overall_footer.html +++ b/phpBB/styles/prosilver/template/overall_footer.html @@ -76,7 +76,8 @@ "content": { "message": "{LA_COOKIE_CONSENT_MSG}", "dismiss": "{LA_COOKIE_CONSENT_OK}", - "link": "{LA_COOKIE_CONSENT_INFO}" + "link": "{LA_COOKIE_CONSENT_INFO}", + "href": "{LA_COOKIE_CONSENT_HREF}" } })}); </script> |