Vergleich captcha.php - 1.2.4 - 1.2.8

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 3Zeile 3
 * MyBB 1.2
* Copyright � 2006 MyBB Group, All Rights Reserved
*

 * MyBB 1.2
* Copyright � 2006 MyBB Group, All Rights Reserved
*

 * Website: http://www.mybboard.com
* License: http://www.mybboard.com/eula.html

 * Website: http://www.mybboard.net
* License: http://www.mybboard.net/eula.html

 *

 *

 * $Id: captcha.php 2542 2006-12-19 23:43:47Z Tikitiki $

 * $Id: captcha.php 3063 2007-05-15 23:53:07Z chris $

 */

define("IN_MYBB", 1);

 */

define("IN_MYBB", 1);

Zeile 30Zeile 30
}
elseif($mybb->input['imagehash'])
{

}
elseif($mybb->input['imagehash'])
{

	$query = $db->simple_select(TABLE_PREFIX."captcha", "*", "imagehash='".$db->escape_string($mybb->input['imagehash'])."'", array("limit" => 1));

	$query = $db->simple_select(TABLE_PREFIX."captcha", "*", "imagehash='".$db->escape_string(strval($mybb->input['imagehash']))."'", array("limit" => 1));

	$regimage = $db->fetch_array($query);
$imagestring = $regimage['imagestring'];
}

	$regimage = $db->fetch_array($query);
$imagestring = $regimage['imagestring'];
}