1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-03 13:17:24 +02:00

adapted shortcode to the new pref name gpdr_privacypolicy

This commit is contained in:
Achim Ennenbach
2018-08-28 12:29:20 +02:00
parent 72897dcc17
commit 97aa3fb560

View File

@@ -177,13 +177,13 @@ class contact_shortcodes extends e_shortcode
function sc_contact_gdpr_link($parm='') function sc_contact_gdpr_link($parm='')
{ {
$pp = e107::getPref('contact_privacypolicy', ''); $pp = e107::getPref('gdpr_privacypolicy', '');
if (!$pp) if (!$pp)
{ {
return ''; return '';
} }
$class = (!empty($parm['class'])) ? $parm['class'] : ''; $class = (!empty($parm['class'])) ? $parm['class'] : '';
$link = e107::getParser()->lanVars('<span class="[x]"><a href="[y]" target="_blank">[z]</a></span>', array($class, $pp, LANCONTACT_22)); $link = sprintf('<span class="%s"><a href="%s" target="_blank">%s</a></span>', $class, $pp, LANCONTACT_22);
$text = e107::getParser()->lanVars(LANCONTACT_23, $link); $text = e107::getParser()->lanVars(LANCONTACT_23, $link);
return $text; return $text;
} }