mirror of https://github.com/BOINC/boinc.git
60 lines
1.3 KiB
PHP
60 lines
1.3 KiB
PHP
<?php
|
|
|
|
require_once('../inc/forum.inc');
|
|
require_once('../inc/util.inc');
|
|
require_once('../inc/time.inc');
|
|
|
|
db_init();
|
|
|
|
page_head("Questions and answers");
|
|
|
|
if (true) {
|
|
echo "
|
|
<form action=http://www.google.com/search>
|
|
<input type=hidden name=domains value=".URL_BASE.">
|
|
<input type=hidden name=sitesearch value=".URL_BASE."/forum_thread.php>
|
|
<input class=small name=q size=20>
|
|
<input type=submit value=Search>
|
|
</form>
|
|
";
|
|
} else {
|
|
echo "
|
|
<p>
|
|
Do a <a href=forum_text_search_form.php>keyword search</a> of messages.
|
|
<p>
|
|
";
|
|
}
|
|
|
|
start_forum_table(array("Topic", "# Questions", "Last post"));
|
|
|
|
$categories = getHelpDeskCategories();
|
|
while ($category = mysql_fetch_object($categories)) {
|
|
echo "
|
|
<tr class=subtitle>
|
|
<td class=category colspan=4>", $category->name, "</td>
|
|
</tr>
|
|
";
|
|
|
|
$forums = getForums($category->id);
|
|
while ($forum = mysql_fetch_object($forums)) {
|
|
echo "
|
|
<tr class=row1>
|
|
<td>
|
|
<b><a href=forum_forum.php?id=$forum->id>$forum->title</a></b>
|
|
<br>", $forum->description, "
|
|
</td>
|
|
<td>", $forum->threads, "</td>
|
|
<td>", time_diff_str($forum->timestamp, time()), "</td>
|
|
</tr>
|
|
";
|
|
}
|
|
}
|
|
|
|
echo "
|
|
</table>
|
|
</p>
|
|
";
|
|
|
|
page_tail();
|
|
?>
|