Verfasst: 30.03.2003 17:44
wo kommt das 17, 34, 00, 3, 30, 2003 + 1 her?
edit: poste zeile 270 - 275 deiner inlcudes/quiz.php
ah
edit: poste zeile 270 - 275 deiner inlcudes/quiz.php
ah
Code: Alles auswählen
if ( $this->config['next_quiz_step_mode'] > 2 )
{
echo $t;
eval ('$next_quiz = mktime(' . $t . ');');
}
else
Code: Alles auswählen
$next_quiz
Hier die entsprechenden Zeilen:
Could not update user quiz points
SQL Error : 1064 You have an error in your SQL syntax near '' at line 3
UPDATE emule_users
SET quiz_points = quiz_points + 1, user_points = user_points + 1
WHERE user_id =
Line : 416
File : /homepages/37/d68291789/htdocs/emuleworld/includes/quiz.php
Code: Alles auswählen
$points = $this->config['quiz_points_disable'] ? 1 : $this->quiz_data['quiz_points'];
$sql = "UPDATE " . USERS_TABLE . "
SET quiz_points = quiz_points + $points, user_points = user_points + $points
WHERE user_id = $user_id";
if ( !$db->sql_query($sql) )
{
$this->notify_admin("Could not update user quiz points", __LINE__, __FILE__, $sql);
return false;
}
return true;
}