source: extensions/CryptograPHP/include/register.inc.php @ 26041

Last change on this file since 26041 was 26041, checked in by mistic100, 10 years ago

update for 2.6

File size: 866 bytes
Line 
1<?php
2defined('CRYPTO_ID') or die('Hacking attempt!');
3
4include(CRYPTO_PATH.'include/common.inc.php');
5add_event_handler('loc_end_page_header', 'add_crypto');
6add_event_handler('register_user_check', 'check_crypto');
7
8function add_crypto()
9{
10  global $template;
11  $template->set_prefilter('register', 'prefilter_crypto');
12}
13
14function prefilter_crypto($content, $smarty)
15{
16  $search = '#\(\{\'useful when password forgotten\'\|@translate\}\)(\s*)((\{/if\})?)#i';
17  $replace = '({\'useful when password forgotten\'|@translate})$1$2'."\n".'{\$CRYPTOGRAPHP}';
18  return preg_replace($search, $replace, $content);
19}
20
21function check_crypto($errors)
22{
23  include_once(CRYPTO_PATH.'securimage/securimage.php');
24  $securimage = new Securimage();
25 
26  if ($securimage->check($_POST['captcha_code']) == false)
27  {
28    $errors[] = l10n('Invalid Captcha');
29  }
30
31  return $errors;
32}
Note: See TracBrowser for help on using the repository browser.