mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
some corrections, only very minor things.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9554 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
711f482cb6
commit
a539fca62b
19 changed files with 264 additions and 257 deletions
|
@ -32,6 +32,11 @@ if (!defined('PHPBB_ACM_MEMCACHE_COMPRESS'))
|
|||
define('PHPBB_ACM_MEMCACHE_COMPRESS', false);
|
||||
}
|
||||
|
||||
if (!defined('PHPBB_ACM_MEMCACHE_HOST'))
|
||||
{
|
||||
define('PHPBB_ACM_MEMCACHE_HOST', 'localhost');
|
||||
}
|
||||
|
||||
/**
|
||||
* ACM for Memcached
|
||||
* @package acm
|
||||
|
@ -48,11 +53,6 @@ class acm extends acm_memory
|
|||
// Call the parent constructor
|
||||
parent::acm_memory();
|
||||
|
||||
if (!defined('PHPBB_ACM_MEMCACHE_HOST'))
|
||||
{
|
||||
trigger_error('Missing required constant [PHPBB_ACM_MEMCACHE_HOST] for memcache ACM module.', E_USER_ERROR);
|
||||
}
|
||||
|
||||
$this->memcache = new Memcache;
|
||||
$this->memcache->connect(PHPBB_ACM_MEMCACHE_HOST, PHPBB_ACM_MEMCACHE_PORT);
|
||||
$this->flags = (PHPBB_ACM_MEMCACHE_COMPRESS) ? MEMCACHE_COMPRESSED : 0;
|
||||
|
|
|
@ -156,7 +156,7 @@ class acm_memory
|
|||
|
||||
while (($entry = readdir($dir)) !== false)
|
||||
{
|
||||
if (strpos($entry, 'ctpl_') !== 0 && strpos($entry, 'tpl_') !== 0)
|
||||
if (strpos($entry, 'sql_') !== 0 && strpos($entry, 'data_') !== 0 && strpos($entry, 'ctpl_') !== 0 && strpos($entry, 'tpl_') !== 0)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
|
@ -27,7 +27,6 @@ class acm
|
|||
*/
|
||||
function acm()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -43,7 +42,6 @@ class acm
|
|||
*/
|
||||
function unload()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -51,7 +49,6 @@ class acm
|
|||
*/
|
||||
function save()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -76,7 +73,6 @@ class acm
|
|||
*/
|
||||
function put($var_name, $var, $ttl = 0)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -84,7 +80,6 @@ class acm
|
|||
*/
|
||||
function purge()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -92,7 +87,6 @@ class acm
|
|||
*/
|
||||
function destroy($var_name, $table = '')
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -116,7 +110,6 @@ class acm
|
|||
*/
|
||||
function sql_save($query, &$query_result, $ttl)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -10,8 +10,6 @@
|
|||
/**
|
||||
* @ignore
|
||||
*/
|
||||
|
||||
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
|
@ -52,6 +50,7 @@ class acp_captcha
|
|||
else
|
||||
{
|
||||
$captchas = phpbb_captcha_factory::get_captcha_types();
|
||||
|
||||
$config_vars = array(
|
||||
'enable_confirm' => 'REG_ENABLE',
|
||||
'enable_post_confirm' => 'POST_ENABLE',
|
||||
|
@ -68,10 +67,12 @@ class acp_captcha
|
|||
if ($submit && check_form_key($form_key))
|
||||
{
|
||||
$config_vars = array_keys($config_vars);
|
||||
|
||||
foreach ($config_vars as $config_var)
|
||||
{
|
||||
set_config($config_var, request_var($config_var, false));
|
||||
}
|
||||
|
||||
if ($selected !== $config['captcha_plugin'])
|
||||
{
|
||||
// sanity check
|
||||
|
@ -79,9 +80,11 @@ class acp_captcha
|
|||
{
|
||||
$old_captcha = phpbb_captcha_factory::get_instance($config['captcha_plugin']);
|
||||
$old_captcha->uninstall();
|
||||
|
||||
set_config('captcha_plugin', $selected);
|
||||
$new_captcha = phpbb_captcha_factory::get_instance($config['captcha_plugin']);
|
||||
$old_captcha->install();
|
||||
$new_captcha->install();
|
||||
|
||||
add_log('admin', 'LOG_CONFIG_VISUAL');
|
||||
}
|
||||
else
|
||||
|
@ -103,6 +106,7 @@ class acp_captcha
|
|||
$current = ($selected !== false && $value == $selected) ? ' selected="selected"' : '';
|
||||
$captcha_select .= '<option value="' . $value . '"' . $current . '>' . $user->lang[$title] . '</option>';
|
||||
}
|
||||
|
||||
foreach ($captchas['unavailable'] as $value => $title)
|
||||
{
|
||||
$current = ($selected !== false && $value == $selected) ? ' selected="selected"' : '';
|
||||
|
@ -121,11 +125,9 @@ class acp_captcha
|
|||
'CAPTCHA_SELECT' => $captcha_select,
|
||||
));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Entry point for delivering image CAPTCHAs in the ACP.
|
||||
*/
|
||||
|
@ -136,13 +138,10 @@ class acp_captcha
|
|||
$captcha = phpbb_captcha_factory::get_instance($selected);
|
||||
$captcha->init(CONFIRM_REG);
|
||||
$captcha->execute_demo();
|
||||
|
||||
garbage_collection();
|
||||
exit_handler();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
?>
|
|
@ -68,7 +68,6 @@ function login_db(&$username, &$password)
|
|||
if ($config['max_login_attempts'] && $row['user_login_attempts'] >= $config['max_login_attempts'])
|
||||
{
|
||||
$confirm_id = request_var('confirm_id', '');
|
||||
$confirm_code = request_var('confirm_code', '');
|
||||
|
||||
// Visual Confirmation handling
|
||||
if (!$confirm_id)
|
||||
|
@ -84,6 +83,7 @@ function login_db(&$username, &$password)
|
|||
$captcha = phpbb_captcha_factory::get_instance($config['captcha_plugin']);
|
||||
$captcha->init(CONFIRM_LOGIN);
|
||||
$vc_response = $captcha->validate();
|
||||
|
||||
if ($vc_response)
|
||||
{
|
||||
return array(
|
||||
|
|
|
@ -16,8 +16,11 @@ if (!defined('IN_PHPBB'))
|
|||
exit;
|
||||
}
|
||||
|
||||
|
||||
/** A small class until we get the autoloader done */
|
||||
/**
|
||||
* A small class for 3.0.x (no autoloader in 3.0.x)
|
||||
*
|
||||
* @package VC
|
||||
*/
|
||||
class phpbb_captcha_factory
|
||||
{
|
||||
/**
|
||||
|
@ -57,9 +60,10 @@ class phpbb_captcha_factory
|
|||
{
|
||||
global $phpbb_root_path, $phpEx;
|
||||
|
||||
$captchas = array();
|
||||
$captchas['available'] = array();
|
||||
$captchas['unavailable'] = array();
|
||||
$captchas = array(
|
||||
'available' => array(),
|
||||
'unavailable' => array(),
|
||||
);
|
||||
|
||||
$dp = @opendir($phpbb_root_path . 'includes/captcha/plugins');
|
||||
|
||||
|
@ -74,6 +78,7 @@ class phpbb_captcha_factory
|
|||
{
|
||||
include($phpbb_root_path . "includes/captcha/plugins/$file");
|
||||
}
|
||||
|
||||
if (call_user_func(array($name, 'is_available')))
|
||||
{
|
||||
$captchas['available'][$name] = call_user_func(array($name, 'get_name'));
|
||||
|
|
|
@ -8,9 +8,11 @@
|
|||
*
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Wave3D CAPTCHA by Robert Hetzler
|
||||
* Wave3D CAPTCHA
|
||||
*
|
||||
* @author Robert Hetzler
|
||||
* @package VC
|
||||
*/
|
||||
class captcha
|
||||
{
|
||||
|
@ -48,6 +50,7 @@ class captcha
|
|||
$plane_y = 30;
|
||||
|
||||
$subdivision_factor = 3;
|
||||
|
||||
// $box is the 4 points in img_space that correspond to the corners of the plane in 3-space
|
||||
$box = array(
|
||||
'upper_left' => array(
|
||||
|
@ -63,12 +66,12 @@ class captcha
|
|||
'y' => mt_rand($img_y - 0, $img_y - 15)
|
||||
),
|
||||
);
|
||||
|
||||
$box['lower_right'] = array(
|
||||
'x' => $box['lower_left']['x'] + $box['upper_left']['x'] - $box['upper_right']['x'],
|
||||
'y' => $box['lower_left']['y'] + $box['upper_left']['y'] - $box['upper_right']['y'],
|
||||
);
|
||||
|
||||
|
||||
// TODO
|
||||
$background = imagecolorallocate($img, mt_rand(155, 255), mt_rand(155, 255), mt_rand(155, 255));
|
||||
imagefill($img, 0, 0, $background);
|
||||
|
|
|
@ -18,7 +18,9 @@ if (!defined('IN_PHPBB'))
|
|||
|
||||
|
||||
/**
|
||||
* This class holds the code shared by the two default 3.0 CAPTCHAs.
|
||||
* This class holds the code shared by the two default 3.0.x CAPTCHAs.
|
||||
*
|
||||
* @package VC
|
||||
*/
|
||||
class phpbb_default_captcha
|
||||
{
|
||||
|
@ -29,7 +31,6 @@ class phpbb_default_captcha
|
|||
var $type;
|
||||
var $solved = false;
|
||||
|
||||
|
||||
function init($type)
|
||||
{
|
||||
global $config, $db, $user;
|
||||
|
@ -50,14 +51,13 @@ class phpbb_default_captcha
|
|||
{
|
||||
$this->regenerate_code();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
function execute_demo()
|
||||
{
|
||||
global $user;
|
||||
|
||||
$this->code = gen_rand_string(mt_rand(5, 8));
|
||||
$this->code = gen_rand_string(mt_rand(CAPTCHA_MIN_CHARS, CAPTCHA_MAX_CHARS));
|
||||
$this->seed = hexdec(substr(unique_id(), 4, 10));
|
||||
|
||||
// compute $seed % 0x7fffffff
|
||||
|
@ -67,7 +67,6 @@ class phpbb_default_captcha
|
|||
$captcha->execute($this->code, $this->seed);
|
||||
}
|
||||
|
||||
|
||||
function execute()
|
||||
{
|
||||
if (empty($this->code))
|
||||
|
@ -82,7 +81,6 @@ class phpbb_default_captcha
|
|||
$captcha->execute($this->code, $this->seed);
|
||||
}
|
||||
|
||||
|
||||
function get_template()
|
||||
{
|
||||
global $config, $user, $template, $phpEx, $phpbb_root_path;
|
||||
|
@ -108,6 +106,7 @@ class phpbb_default_captcha
|
|||
$template->set_filenames(array(
|
||||
'captcha_demo' => 'captcha_default_acp_demo.html')
|
||||
);
|
||||
|
||||
// acp_captcha has a delivery function; let's use it
|
||||
$template->assign_vars(array(
|
||||
'CONFIRM_IMAGE' => append_sid($phpbb_admin_path . 'index.' . $phpEx . '?captcha_demo=1&mode=visual&i=' . $id . '&select_captcha=' . $this->get_class_name()),
|
||||
|
@ -162,7 +161,7 @@ class phpbb_default_captcha
|
|||
|
||||
function uninstall()
|
||||
{
|
||||
self::garbage_collect(0);
|
||||
$this->garbage_collect(0);
|
||||
}
|
||||
|
||||
function install()
|
||||
|
@ -194,7 +193,7 @@ class phpbb_default_captcha
|
|||
|
||||
if (strlen($error))
|
||||
{
|
||||
// okay, inorect answer. Let's ask a new question
|
||||
// okay, incorrect answer. Let's ask a new question.
|
||||
$this->generate_code();
|
||||
return $error;
|
||||
}
|
||||
|
@ -204,7 +203,6 @@ class phpbb_default_captcha
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* The old way to generate code, suitable for GD and non-GD. Resets the internal state.
|
||||
*/
|
||||
|
@ -212,7 +210,7 @@ class phpbb_default_captcha
|
|||
{
|
||||
global $db, $user;
|
||||
|
||||
$this->code = gen_rand_string(mt_rand(5, 8));
|
||||
$this->code = gen_rand_string(mt_rand(CAPTCHA_MIN_CHARS, CAPTCHA_MAX_CHARS));
|
||||
$this->confirm_id = md5(unique_id($user->ip));
|
||||
$this->seed = hexdec(substr(unique_id(), 4, 10));
|
||||
$this->solved = false;
|
||||
|
@ -236,11 +234,12 @@ class phpbb_default_captcha
|
|||
{
|
||||
global $db, $user;
|
||||
|
||||
$this->code = gen_rand_string(mt_rand(5, 8));
|
||||
$this->code = gen_rand_string(mt_rand(CAPTCHA_MIN_CHARS, CAPTCHA_MAX_CHARS));
|
||||
$this->seed = hexdec(substr(unique_id(), 4, 10));
|
||||
$this->solved = false;
|
||||
// compute $seed % 0x7fffffff
|
||||
$this->seed -= 0x7fffffff * floor($this->seed / 0x7fffffff);
|
||||
|
||||
$sql = 'UPDATE ' . CONFIRM_TABLE . ' SET ' . $db->sql_build_array('UPDATE', array(
|
||||
'code' => (string) $this->code,
|
||||
'seed' => (int) $this->seed)) . '
|
||||
|
@ -256,6 +255,7 @@ class phpbb_default_captcha
|
|||
function load_code()
|
||||
{
|
||||
global $db, $user;
|
||||
|
||||
$sql = 'SELECT code, seed
|
||||
FROM ' . CONFIRM_TABLE . "
|
||||
WHERE confirm_id = '" . $db->sql_escape($this->confirm_id) . "'
|
||||
|
@ -264,14 +264,15 @@ class phpbb_default_captcha
|
|||
$result = $db->sql_query($sql);
|
||||
$row = $db->sql_fetchrow($result);
|
||||
$db->sql_freeresult($result);
|
||||
|
||||
if ($row)
|
||||
{
|
||||
$this->code = $row['code'];
|
||||
$this->seed = $row['seed'];
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
function check_code()
|
||||
|
@ -314,7 +315,6 @@ class phpbb_default_captcha
|
|||
return $attempts;
|
||||
}
|
||||
|
||||
|
||||
function reset()
|
||||
{
|
||||
global $db, $user;
|
||||
|
@ -327,7 +327,6 @@ class phpbb_default_captcha
|
|||
// we leave the class usable by generating a new question
|
||||
$this->generate_code();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
|
@ -24,6 +24,9 @@ if (!class_exists('phpbb_default_captcha'))
|
|||
include($phpbb_root_path . 'includes/captcha/plugins/captcha_abstract.' . $phpEx);
|
||||
}
|
||||
|
||||
/**
|
||||
* @package VC
|
||||
*/
|
||||
class phpbb_captcha_gd extends phpbb_default_captcha
|
||||
{
|
||||
function phpbb_captcha_gd()
|
||||
|
@ -80,7 +83,6 @@ class phpbb_captcha_gd extends phpbb_default_captcha
|
|||
'captcha_gd' => 'CAPTCHA_GD',
|
||||
);
|
||||
|
||||
|
||||
$module->tpl_name = 'captcha_gd_acp';
|
||||
$module->page_title = 'ACP_VC_SETTINGS';
|
||||
$form_key = 'acp_captcha';
|
||||
|
@ -112,11 +114,11 @@ class phpbb_captcha_gd extends phpbb_default_captcha
|
|||
$var = (isset($_REQUEST[$captcha_var])) ? request_var($captcha_var, 0) : $config[$captcha_var];
|
||||
$template->assign_var($template_var, $var);
|
||||
}
|
||||
|
||||
$template->assign_vars(array(
|
||||
'CAPTCHA_PREVIEW' => $this->get_demo_template($id),
|
||||
'CAPTCHA_NAME' => $this->get_class_name(),
|
||||
));
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -24,6 +24,9 @@ if (!class_exists('captcha_abstract'))
|
|||
include_once($phpbb_root_path . 'includes/captcha/plugins/captcha_abstract.' . $phpEx);
|
||||
}
|
||||
|
||||
/**
|
||||
* @package VC
|
||||
*/
|
||||
class phpbb_captcha_gd_wave extends phpbb_default_captcha
|
||||
{
|
||||
|
||||
|
|
|
@ -24,6 +24,9 @@ if (!class_exists('phpbb_default_captcha'))
|
|||
include_once($phpbb_root_path . 'includes/captcha/plugins/captcha_abstract.' . $phpEx);
|
||||
}
|
||||
|
||||
/**
|
||||
* @package VC
|
||||
*/
|
||||
class phpbb_captcha_nogd extends phpbb_default_captcha
|
||||
{
|
||||
|
||||
|
@ -49,8 +52,6 @@ class phpbb_captcha_nogd extends phpbb_default_captcha
|
|||
|
||||
function get_name()
|
||||
{
|
||||
global $user;
|
||||
|
||||
return 'CAPTCHA_NO_GD';
|
||||
}
|
||||
|
||||
|
@ -59,7 +60,6 @@ class phpbb_captcha_nogd extends phpbb_default_captcha
|
|||
return 'phpbb_captcha_nogd';
|
||||
}
|
||||
|
||||
|
||||
function acp_page($id, &$module)
|
||||
{
|
||||
global $user;
|
||||
|
@ -68,3 +68,4 @@ class phpbb_captcha_nogd extends phpbb_default_captcha
|
|||
}
|
||||
}
|
||||
|
||||
?>
|
|
@ -22,6 +22,9 @@ if (!class_exists('phpbb_default_captcha'))
|
|||
include_once($phpbb_root_path . 'includes/captcha/plugins/captcha_abstract.' . $phpEx);
|
||||
}
|
||||
|
||||
/**
|
||||
* @package VC
|
||||
*/
|
||||
class phpbb_recaptcha extends phpbb_default_captcha
|
||||
{
|
||||
var $recaptcha_server = 'http://api.recaptcha.net';
|
||||
|
@ -29,7 +32,6 @@ class phpbb_recaptcha extends phpbb_default_captcha
|
|||
var $challenge;
|
||||
var $response;
|
||||
|
||||
|
||||
function init($type)
|
||||
{
|
||||
global $config, $db, $user;
|
||||
|
@ -40,7 +42,6 @@ class phpbb_recaptcha extends phpbb_default_captcha
|
|||
$this->response = request_var('recaptcha_response_field', '');
|
||||
}
|
||||
|
||||
|
||||
function get_instance()
|
||||
{
|
||||
return new phpbb_recaptcha();
|
||||
|
@ -103,6 +104,7 @@ class phpbb_recaptcha extends phpbb_default_captcha
|
|||
$var = (isset($_REQUEST[$captcha_var])) ? request_var($captcha_var, '') : ((isset($config[$captcha_var])) ? $config[$captcha_var] : '');
|
||||
$template->assign_var($template_var, $var);
|
||||
}
|
||||
|
||||
$template->assign_vars(array(
|
||||
'CAPTCHA_PREVIEW' => $this->get_demo_template($id),
|
||||
'CAPTCHA_NAME' => $this->get_class_name(),
|
||||
|
@ -111,19 +113,16 @@ class phpbb_recaptcha extends phpbb_default_captcha
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
// not needed
|
||||
function execute_demo()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
// not needed
|
||||
function execute()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
function get_template()
|
||||
{
|
||||
global $config, $user, $template;
|
||||
|
@ -162,7 +161,7 @@ class phpbb_recaptcha extends phpbb_default_captcha
|
|||
|
||||
function uninstall()
|
||||
{
|
||||
self::garbage_collect(0);
|
||||
$this->garbage_collect(0);
|
||||
}
|
||||
|
||||
function install()
|
||||
|
@ -182,7 +181,6 @@ class phpbb_recaptcha extends phpbb_default_captcha
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
// Code from here on is based on recaptchalib.php
|
||||
/*
|
||||
* This is a PHP library that handles calling reCAPTCHA.
|
||||
|
@ -238,21 +236,24 @@ class phpbb_recaptcha extends phpbb_default_captcha
|
|||
$http_request .= $req;
|
||||
|
||||
$response = '';
|
||||
if( false == ( $fs = @fsockopen($host, $port, $errno, $errstr, 10) ) ) {
|
||||
die ('Could not open socket');
|
||||
if (false == ($fs = @fsockopen($host, $port, $errno, $errstr, 10)))
|
||||
{
|
||||
trigger_error('Could not open socket', E_USER_ERROR);
|
||||
}
|
||||
|
||||
fwrite($fs, $http_request);
|
||||
|
||||
while (!feof($fs))
|
||||
$response .= fgets($fs, 1160); // One TCP-IP packet
|
||||
{
|
||||
// One TCP-IP packet
|
||||
$response .= fgets($fs, 1160);
|
||||
}
|
||||
fclose($fs);
|
||||
$response = explode("\r\n\r\n", $response, 2);
|
||||
|
||||
return $response;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Calls an HTTP POST function to verify if the user's guess was correct
|
||||
* @param array $extra_params an array of extra variables to post to the server
|
||||
|
@ -261,13 +262,14 @@ class phpbb_recaptcha extends phpbb_default_captcha
|
|||
function recaptcha_check_answer($extra_params = array())
|
||||
{
|
||||
global $config, $user;
|
||||
|
||||
//discard spam submissions
|
||||
if ($this->challenge == null || strlen($this->challenge) == 0 || $this->response == null || strlen($this->response) == 0)
|
||||
{
|
||||
return $user->lang['RECAPTCHA_INCORRECT'];
|
||||
}
|
||||
|
||||
$response = $this->_recaptcha_http_post ($this->recaptcha_verify_server, "/verify",
|
||||
$response = $this->_recaptcha_http_post($this->recaptcha_verify_server, '/verify',
|
||||
array(
|
||||
'privatekey' => $config['recaptcha_privkey'],
|
||||
'remoteip' => $user->ip,
|
||||
|
@ -304,9 +306,11 @@ class phpbb_recaptcha extends phpbb_default_captcha
|
|||
{
|
||||
$req .= $key . '=' . urlencode(stripslashes($value)) . '&';
|
||||
}
|
||||
|
||||
// Cut the last '&'
|
||||
$req = substr($req, 0, strlen($req) - 1);
|
||||
return $req;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
|
@ -680,7 +680,7 @@ function phpbb_chmod($filename, $perms = CHMOD_READ)
|
|||
*/
|
||||
function phpbb_is_writable($file)
|
||||
{
|
||||
if (substr(PHP_OS, 0, 3) === 'WIN' || !function_exists('is_writable'))
|
||||
if (strtolower(substr(PHP_OS, 0, 3)) === 'win' || !function_exists('is_writable'))
|
||||
{
|
||||
if (file_exists($file))
|
||||
{
|
||||
|
@ -714,7 +714,6 @@ function phpbb_is_writable($file)
|
|||
else
|
||||
{
|
||||
// file does not exist test if we can write to the directory
|
||||
|
||||
$dir = dirname($file);
|
||||
|
||||
if (file_exists($dir) && is_dir($dir) && phpbb_is_writable($dir))
|
||||
|
@ -722,6 +721,7 @@ function phpbb_is_writable($file)
|
|||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
else
|
||||
|
@ -2700,14 +2700,12 @@ function login_box($redirect = '', $l_explain = '', $l_success = '', $admin = fa
|
|||
$captcha->init(CONFIRM_LOGIN);
|
||||
$captcha->reset();
|
||||
|
||||
|
||||
$template->assign_vars(array(
|
||||
'S_CONFIRM_CODE' => true,
|
||||
'CONFIRM' => $captcha->get_template(''),
|
||||
));
|
||||
|
||||
$err = $user->lang[$result['error_msg']];
|
||||
|
||||
break;
|
||||
|
||||
case LOGIN_ERROR_PASSWORD_CONVERT:
|
||||
|
|
|
@ -961,7 +961,6 @@ class session
|
|||
return;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Sets a cookie
|
||||
*
|
||||
|
|
|
@ -43,6 +43,7 @@ class ucp_register
|
|||
$change_lang = request_var('change_lang', '');
|
||||
$user_lang = request_var('lang', $user->lang_name);
|
||||
$confirm_refresh= (isset($_POST['confirm_refresh']) && $config['confirm_refresh']) ? ((!empty($_POST['confirm_refresh'])) ? 1 : 0) : false;
|
||||
|
||||
if ($agreed)
|
||||
{
|
||||
add_form_key('ucp_register');
|
||||
|
@ -52,7 +53,6 @@ class ucp_register
|
|||
add_form_key('ucp_register_terms');
|
||||
}
|
||||
|
||||
|
||||
if ($config['enable_confirm'])
|
||||
{
|
||||
include($phpbb_root_path . 'includes/captcha/captcha_factory.' . $phpEx);
|
||||
|
@ -198,10 +198,12 @@ class ucp_register
|
|||
'tz' => array('num', false, -14, 14),
|
||||
'lang' => array('match', false, '#^[a-z_\-]{2,}$#i'),
|
||||
));
|
||||
|
||||
if (!check_form_key('ucp_register'))
|
||||
{
|
||||
$error[] = $user->lang['FORM_INVALID'];
|
||||
}
|
||||
|
||||
// Replace "error" strings with their real, localised form
|
||||
$error = preg_replace('#^([A-Z_]+)$#e', "(!empty(\$user->lang['\\1'])) ? \$user->lang['\\1'] : '\\1'", $error);
|
||||
|
||||
|
@ -216,11 +218,13 @@ class ucp_register
|
|||
{
|
||||
$captcha->reset();
|
||||
}
|
||||
|
||||
if ($config['max_reg_attempts'] && $captcha->get_attempt_count() > $config['max_reg_attempts'])
|
||||
{
|
||||
$error[] = $user->lang['TOO_MANY_REGISTERS'];
|
||||
}
|
||||
}
|
||||
|
||||
// DNSBL check
|
||||
if ($config['check_dnsbl'])
|
||||
{
|
||||
|
@ -424,7 +428,6 @@ class ucp_register
|
|||
$confirm_image = '';
|
||||
|
||||
// Visual Confirmation - Show images
|
||||
|
||||
if ($config['enable_confirm'])
|
||||
{
|
||||
if ($change_lang || $confirm_refresh)
|
||||
|
@ -434,13 +437,12 @@ class ucp_register
|
|||
else
|
||||
{
|
||||
$str = '';
|
||||
|
||||
}
|
||||
|
||||
$template->assign_vars(array(
|
||||
'L_CONFIRM_EXPLAIN' => sprintf($user->lang['CONFIRM_EXPLAIN'], '<a href="mailto:' . htmlspecialchars($config['board_contact']) . '">', '</a>'),
|
||||
'S_CAPTCHA' => $captcha->get_template(),
|
||||
));
|
||||
|
||||
}
|
||||
|
||||
//
|
||||
|
@ -474,8 +476,7 @@ class ucp_register
|
|||
'S_COPPA' => $coppa,
|
||||
'S_HIDDEN_FIELDS' => $s_hidden_fields,
|
||||
'S_UCP_ACTION' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=register'),
|
||||
)
|
||||
);
|
||||
));
|
||||
|
||||
//
|
||||
$user->profile_fields = array();
|
||||
|
|
|
@ -1016,12 +1016,11 @@ function change_database_data(&$no_updates, $version)
|
|||
case '3.0.5-RC1':
|
||||
break;
|
||||
|
||||
|
||||
|
||||
case '3.0.5':
|
||||
// TODO: smarter detection here; problem without GD.
|
||||
set_config('captcha_plugin', 'phpbb_captcha_nogd');
|
||||
|
||||
$no_updates = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1016,10 +1016,12 @@ if ($submit || $preview || $refresh)
|
|||
}
|
||||
|
||||
$redirect_url = submit_post($mode, $post_data['post_subject'], $post_data['username'], $post_data['topic_type'], $poll, $data, $update_message);
|
||||
|
||||
if ($config['enable_post_confirm'] && !$user->data['is_registered'] && in_array($mode, array('quote', 'post', 'reply')))
|
||||
{
|
||||
$captcha->reset();
|
||||
}
|
||||
|
||||
// Check the permissions for post approval, as well as the queue trigger where users are put on approval with a post count lower than specified. Moderators are not affected.
|
||||
if ((($config['enable_queue_trigger'] && $user->data['user_posts'] < $config['queue_trigger_posts']) || !$auth->acl_get('f_noapprove', $data['forum_id'])) && !$auth->acl_get('m_approve', $data['forum_id']))
|
||||
{
|
||||
|
@ -1242,7 +1244,6 @@ if ($config['enable_post_confirm'] && !$user->data['is_registered'] && $solved_c
|
|||
{
|
||||
$captcha->reset();
|
||||
|
||||
|
||||
$template->assign_vars(array(
|
||||
'S_CONFIRM_CODE' => true,
|
||||
'CONFIRM' => $captcha->get_template(),
|
||||
|
|
Loading…
Add table
Reference in a new issue