boinc/html/user/forum_thread_status.php

28 lines
802 B
PHP
Raw Normal View History

<?php
// Change the status of a thread.
// A thread can be either unsolved or solved (used in the Q&A part)
require_once('../inc/forum.inc');
$threadid = get_int('id');
$thread = BoincThread::lookup_id($threadid);
$logged_in_user = get_logged_in_user();
$owner = BoincUser::lookup_id($thread->owner);
if ($logged_in_user->id == $owner->id){
$ret = $thread->update("status=".THREAD_SOLVED);
if (!$ret){
error_page("Could not update the status of the thread: ".$thread->id);
}
} else {
error_page("You must be the owner of the thread to do this");
}
// --------------
page_head("Status of the thread");
echo "<p>The status has been updated. Thank you!</p>";
echo "<p><a href=\"forum_thread.php?nowrap=true&id=".$thread->id."\">Return to the thread</a></p>";
page_tail();
?>