Optional link tracking

This commit is contained in:
Daniel Berteaud 2014-07-29 16:42:05 +02:00
parent 7ddd4a6034
commit f196e22426
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
{
if (($phplist{'Tracking'} || 'disabled') eq 'enabled'){
$OUT .=<<"EOF";
define('CLICKTRACK',1);
define('CLICKTRACK_SHOWDETAIL',1);
EOF
}
else{
$OUT .= '# Tracking is disabled';
}