Files
PrestaShop/modules/blocknewsletter/verification.php
T
fBrignoli a7b62a9520 [*] MO : blocknewsletter : double opt-in
[*] MO : newsletter : filter on  active only


git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@8729 b9a71923-0436-4b27-9f14-aed3839534dd
2011-09-23 08:44:49 +00:00

15 lines
369 B
PHP
Executable File

<?php
require_once(dirname(__FILE__).'/../../config/config.inc.php');
require_once('blocknewsletter.php');
$module = new Blocknewsletter();
if (!Module::isInstalled($module->name))
exit;
$token = Tools::getValue('token');
require_once(dirname(__FILE__).'/../../header.php');
echo $module->confirmEmail($token);
require_once(dirname(__FILE__).'/../../footer.php');