In looking at some of the HTML source, the class attribute's value is not
wrapped in single or double quotes.   For example, as seen in home.php:
<td width="40%" class=fieldname>

should actually be:
<td width="40%" class="fieldname">

Since most browsers allow missing end tags such as <br> instead of <br/>
and not using quotes around single word attributes, it isn't a critical bug
fix at this time

I haven't checked whether this issue is limited to util.inc, but it appears
there several times.  For example, in the function row2, the code should be
changed from:
echo "<tr><td width=\"40%\" class=$class1>$x</td><td
class=$class2>$y</td></tr>\n";
to:
echo "<tr><td width=\"40%\" class=\"$class1\">$x</td><td
class=$class2>$y</td></tr>\n";


Jon Sonntag
_______________________________________________
boinc_dev mailing list
[email protected]
http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev
To unsubscribe, visit the above URL and
(near bottom of page) enter your email address.

Reply via email to