whe have a cron job that sends out an email to notifie users who post a advertisment in a forum group.
in this email there is a link which update his advertisment thread.
the old code was written for vb 3.0.3 know i have update to 3.8.2 and this script isn't running anymore
should the code below work or do i have to alter someting.
Code:
function updateThread($id, $ut){
mysql_query("UPDATE vb3_thread SET sortdateline = maildateline, mailed = '0', open = '1' WHERE threadid = '$id' AND maildateline = '$ut' AND forumid = '46' ");
return (mysql_affected_rows() == 1);
}
[edit]
this peace of code is in a user written php file
if needed i could post it here
[/edit]