Hallo, Gast! (Registrieren)

Letzte Ankündigung: MyBB 1.8.38 veröffentlicht (30.04.24)


Benutzer, die gerade dieses Thema anschauen: 1 Gast/Gäste
[geteilt] Registration Security Question
#14
regcheck scheint aber trotzdem in die gleiche Kategorie zu fallen, zumindest bezieht sich der Kommentar in der Funktion die das prüft auch auf Spambots. Voodoo halt. Smile

PHP-Code:
/**
         * Verifies if this is coming from a spam bot or not
         *
         * @return boolean True when valid, false when invalid.
         */
        
function verify_checkfields()
        {
                
$user = &$this->data;

                
// An invalid language has been specified?
                
if($user['regcheck1'] !== "" || $user['regcheck2'] !== "true")
                {
                        
$this->set_error("invalid_checkfield");
                        return 
false;
                }
                return 
true;
        } 


Nachrichten in diesem Thema
RE: Registration Security Question - von Neon - 23.01.2012, 15:35
RE: Registration Security Question - von Neon - 23.01.2012, 20:44
RE: Registration Security Question - von Neon - 23.01.2012, 21:27
RE: Registration Security Question - von Neon - 23.01.2012, 23:15
RE: Registration Security Question - von Neon - 24.01.2012, 00:58
RE: Registration Security Question - von frostschutz - 24.01.2012, 11:46
RE: Registration Security Question - von Neon - 24.01.2012, 12:19
RE: Registration Security Question - von Neon - 24.01.2012, 13:21
RE: Registration Security Question - von Neon - 24.01.2012, 14:32
RE: Registration Security Question - von Neon - 24.01.2012, 14:52