Zeile 3 | Zeile 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 3595 2008-01-09 00:10:57Z Tikitiki $
|
*/
define("IN_MYBB", 1);
| */
define("IN_MYBB", 1);
|
Zeile 30 | Zeile 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']; }
|