aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2017-03-19 18:11:40 +0100
committerTristan Darricau <github@nicofuma.fr>2017-03-19 18:11:40 +0100
commit224330f3a5e96c766e9438392ca2f20003533889 (patch)
tree5594713a92ccd3f1c2817c769122671feda66a2a /phpBB
parent552da2e80575c7db28449fd292d6bfa9b8f4b036 (diff)
parent74f1b19dfe955f70fcc857e4bbd8921ec27dc82c (diff)
downloadforums-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.php1
-rw-r--r--phpBB/styles/prosilver/template/overall_footer.html3
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>