2006-06-16 23:53:56 +00:00
|
|
|
<?php
|
2007-11-12 20:57:15 +00:00
|
|
|
// Use this file you can vote for a thread.
|
|
|
|
// It simply votes for the first post in the thread.
|
2006-06-16 23:53:56 +00:00
|
|
|
|
|
|
|
require_once('../inc/forum.inc');
|
|
|
|
|
|
|
|
$threadid = get_int('id');
|
2007-11-12 20:57:15 +00:00
|
|
|
$thread = BoincThread::lookup_id($threadid);
|
|
|
|
$logged_in_user = get_logged_in_user();
|
2006-06-16 23:53:56 +00:00
|
|
|
|
2007-11-12 20:57:15 +00:00
|
|
|
$posts = get_thread_posts($threadid, 0,true);
|
|
|
|
header("Location: forum_rate.php?choice=p&post=".$posts[0]->id);
|
2006-06-16 23:53:56 +00:00
|
|
|
?>
|