mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=3270
This commit is contained in:
parent
e730172d2d
commit
83c6281a88
|
@ -96,12 +96,12 @@ while($thread = mysql_fetch_object($threads)) {
|
|||
$excerpt = sub_sentence($first_post->content, ' ', EXCERPT_LENGTH, true);
|
||||
echo "
|
||||
<tr class=row$n style=\"font-size:8pt; text-align:center\">
|
||||
<td style=\"font-size:10pt; text-align:left\"><a href=\"thread.php?id=", $thread->id, "\"><b>", stripslashes($thread->title), "</b></a><br>
|
||||
<td style=\"font-size:10pt; text-align:left\"><a href=\"thread.php?id=", $thread->id, "\"><b>", strip_tags(stripslashes($thread->title)), "</b></a><br>
|
||||
";
|
||||
$n = ($n+1)%2;
|
||||
|
||||
if ($category->is_helpdesk) {
|
||||
echo stripslashes($excerpt);
|
||||
echo strip_tags(stripslashes($excerpt));
|
||||
$na = $thread->sufferers + 1;
|
||||
$x = time_diff_str($first_post->timestamp, time());
|
||||
echo "<br><font size=-2>Asked $x; asked $na times";
|
||||
|
|
|
@ -453,7 +453,7 @@ function show_forum_title($forum=NULL, $thread=NULL, $helpdesk=false) {
|
|||
echo "<a href=index.php>", " Message boards</a> : ";
|
||||
}
|
||||
echo "<a href=\"forum.php?id=", $forum->id, "\">", $forum->title, "</a> : ";
|
||||
echo stripslashes($thread->title);
|
||||
echo strip_tags(stripslashes($thread->title));
|
||||
echo "</span><br>";
|
||||
} else {
|
||||
echo "Invalid input to show_forum_title<br>";
|
||||
|
|
|
@ -28,7 +28,7 @@ developed by <a href=mailto:stats@boinc.dk>Janus Kristensen</a>.
|
|||
developed by Sascha Pfalz.
|
||||
<li>
|
||||
<a href=http://stats.boincbzh.net/BZHwds/index.php>BOINC Alliance Francophone</a>,
|
||||
developed by Vincent Mary (vincent.mary at univ-rennes1.fr).
|
||||
developed by Vincent Mary (email: stats at hoincbzh dot net).
|
||||
Supports competition between 'mini-teams'.
|
||||
</ul>
|
||||
These systems are implemented using PHP,
|
||||
|
|
Loading…
Reference in New Issue