Algemene Fout
Could not query Posts table.
DEBUG MODE
SQL Error : 1064 You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
SELECT post_time FROM phpbb_posts WHERE post_id =
Line : 48
File : *.nl/forum/includes/edit_post_date.php
hier het betreffende stukje (lijn 40 t/m 53) lijn 48 is vetgedrukt:
// Pull current Post date for the Post in question
//
$sql = "SELECT post_time" .
" FROM ". POSTS_TABLE .
" WHERE post_id = $p";
if( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not query Posts table.', '', __LINE__, __FILE__, $sql);
}
$row = $db->sql_fetchrow($result);
$current_post_date = $row['post_time'];
$new_post_date = "";
-----
Alvast bedankt!