mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-25 20:41:20 -05:00
remember humans
This commit is contained in:
parent
5f13dba509
commit
968fadbc4a
@ -573,7 +573,7 @@ class Main extends CI_Controller
|
|||||||
//get "word"
|
//get "word"
|
||||||
$pool = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ@';
|
$pool = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ@';
|
||||||
$str = '';
|
$str = '';
|
||||||
for ($i = 0;$i < 4;$i++)
|
for ($i = 0;$i < 8;$i++)
|
||||||
{
|
{
|
||||||
$str.= substr($pool, mt_rand(0, strlen($pool) - 1) , 1);
|
$str.= substr($pool, mt_rand(0, strlen($pool) - 1) , 1);
|
||||||
}
|
}
|
||||||
@ -600,17 +600,35 @@ class Main extends CI_Controller
|
|||||||
function _valid_captcha($text)
|
function _valid_captcha($text)
|
||||||
{
|
{
|
||||||
|
|
||||||
if (config_item('enable_captcha'))
|
if (config_item('enable_captcha') && $this->db_session->userdata('is_human') === false)
|
||||||
{
|
{
|
||||||
$this->form_validation->set_message('_valid_captcha', lang('captcha'));
|
$this->form_validation->set_message('_valid_captcha', lang('captcha'));
|
||||||
|
|
||||||
if ($this->use_recaptcha)
|
if ($this->use_recaptcha)
|
||||||
{
|
{
|
||||||
return $this->_valid_recaptcha();
|
|
||||||
|
if ($this->_valid_recaptcha())
|
||||||
|
{
|
||||||
|
$this->db_session->set_userdata('is_human', true);
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return strtolower($text) == strtolower($this->db_session->userdata('captcha'));
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
|
||||||
|
if (strtolower($text) == strtolower($this->db_session->userdata('captcha')))
|
||||||
|
{
|
||||||
|
$this->db_session->set_userdata('is_human', true);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -286,7 +286,7 @@ if (!function_exists('display_captcha'))
|
|||||||
'word' => $word,
|
'word' => $word,
|
||||||
'img_path' => '',
|
'img_path' => '',
|
||||||
'img_url' => '',
|
'img_url' => '',
|
||||||
'img_width' => '110',
|
'img_width' => '180',
|
||||||
'img_height' => '40',
|
'img_height' => '40',
|
||||||
'font_path' => '',
|
'font_path' => '',
|
||||||
'expiration' => 7200
|
'expiration' => 7200
|
||||||
|
@ -107,7 +107,7 @@
|
|||||||
<input type="hidden" value="<?php echo $reply; ?>" name="reply" />
|
<input type="hidden" value="<?php echo $reply; ?>" name="reply" />
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<?php if($this->config->item('enable_captcha')){ ?>
|
<?php if($this->config->item('enable_captcha') && $this->db_session->userdata('is_human') === false){ ?>
|
||||||
<div class="item_group">
|
<div class="item_group">
|
||||||
<div class="item item_captcha">
|
<div class="item item_captcha">
|
||||||
<label for="captcha"><?php echo lang('paste_spam'); ?>
|
<label for="captcha"><?php echo lang('paste_spam'); ?>
|
||||||
@ -116,7 +116,7 @@
|
|||||||
<?php if($use_recaptcha){
|
<?php if($use_recaptcha){
|
||||||
echo recaptcha_get_html($recaptcha_publickey);
|
echo recaptcha_get_html($recaptcha_publickey);
|
||||||
} else { ?>
|
} else { ?>
|
||||||
<img class="captcha" src="<?php echo site_url('view/captcha'); ?>?<?php echo date('U', mktime()); ?>" alt="captcha" width="110" height="40" />
|
<img class="captcha" src="<?php echo site_url('view/captcha'); ?>?<?php echo date('U', mktime()); ?>" alt="captcha" width="180" height="40" />
|
||||||
<input value="" type="text" id="captcha" name="captcha" tabindex="2" maxlength="32" />
|
<input value="" type="text" id="captcha" name="captcha" tabindex="2" maxlength="32" />
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
|
@ -146,6 +146,7 @@ h4 {
|
|||||||
#captcha {
|
#captcha {
|
||||||
position: relative;
|
position: relative;
|
||||||
left: 140px;
|
left: 140px;
|
||||||
|
width: 174px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form_wrapper .item_group .item input, .form_wrapper .item_group .item select {
|
.form_wrapper .item_group .item input, .form_wrapper .item_group .item select {
|
||||||
|
@ -104,7 +104,7 @@
|
|||||||
<input type="hidden" value="<?php echo $reply; ?>" name="reply" />
|
<input type="hidden" value="<?php echo $reply; ?>" name="reply" />
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<?php if($this->config->item('enable_captcha')){ ?>
|
<?php if($this->config->item('enable_captcha') && $this->db_session->userdata('is_human') === false){ ?>
|
||||||
<div class="item_group">
|
<div class="item_group">
|
||||||
<div class="item item_captcha">
|
<div class="item item_captcha">
|
||||||
<label for="captcha"><?php echo lang('paste_spam'); ?>
|
<label for="captcha"><?php echo lang('paste_spam'); ?>
|
||||||
@ -113,7 +113,7 @@
|
|||||||
<?php if($use_recaptcha){
|
<?php if($use_recaptcha){
|
||||||
echo recaptcha_get_html($recaptcha_publickey);
|
echo recaptcha_get_html($recaptcha_publickey);
|
||||||
} else { ?>
|
} else { ?>
|
||||||
<img class="captcha" src="<?php echo site_url('view/captcha'); ?>?<?php echo date('U', mktime()); ?>" alt="captcha" width="110" height="40" />
|
<img class="captcha" src="<?php echo site_url('view/captcha'); ?>?<?php echo date('U', mktime()); ?>" alt="captcha" width="180" height="40" />
|
||||||
<input value="" type="text" id="captcha" name="captcha" tabindex="2" maxlength="32" />
|
<input value="" type="text" id="captcha" name="captcha" tabindex="2" maxlength="32" />
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
|
@ -107,7 +107,7 @@
|
|||||||
<input type="hidden" value="<?php echo $reply; ?>" name="reply" />
|
<input type="hidden" value="<?php echo $reply; ?>" name="reply" />
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<?php if($this->config->item('enable_captcha')){ ?>
|
<?php if($this->config->item('enable_captcha') && $this->db_session->userdata('is_human') === false){ ?>
|
||||||
<div class="item_group">
|
<div class="item_group">
|
||||||
<div class="item item_captcha">
|
<div class="item item_captcha">
|
||||||
<label for="captcha"><?php echo lang('paste_spam'); ?>
|
<label for="captcha"><?php echo lang('paste_spam'); ?>
|
||||||
@ -116,7 +116,7 @@
|
|||||||
<?php if($use_recaptcha){
|
<?php if($use_recaptcha){
|
||||||
echo recaptcha_get_html($recaptcha_publickey);
|
echo recaptcha_get_html($recaptcha_publickey);
|
||||||
} else { ?>
|
} else { ?>
|
||||||
<img class="captcha" src="<?php echo site_url('view/captcha'); ?>?<?php echo date('U', mktime()); ?>" alt="captcha" width="110" height="40" />
|
<img class="captcha" src="<?php echo site_url('view/captcha'); ?>?<?php echo date('U', mktime()); ?>" alt="captcha" width="180" height="40" />
|
||||||
<input value="" type="text" id="captcha" name="captcha" tabindex="2" maxlength="32" />
|
<input value="" type="text" id="captcha" name="captcha" tabindex="2" maxlength="32" />
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user