In team.inc, display_team_members function, there are two issues:
1) class attribute value is not wrapped in quotes (e.g. class=xxx instead
of class="xxx")
2) There is no closing tag for the <td> element for the name.
e.g.
<td> member_name_data
<td> total_credit </td>

instead of:
<td> member_name_data </td>
<td> total_credit </td>

Most browsers will automatically render as if insert the missing closing td
tag was there when it sees a new td tag but there is no guarantee that will
happen.   I've seen the same thing happen when <li> elements do not have
the closing </li> tags.

Another thing I noticed was the use of align=right or align=left in
tables.  Not only are the quotes missing from the attribute, but align has
been deprecated in HTML5.  Are there any plans to make the BOINC code HTML5
compliant?

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