Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

W3C-errors

Asked Modified Viewed 960 times
S
smokeman
S
  • Veteran Member, joined since
  • Contributed 920 posts on the community forums.
  • Started 79 threads in the forums
  • Started this discussions
asked
Veteran Member

There's some w3c-errors in the forum extensions panel (which is used here on the site too).

forum_extensions_panel.php:

Before:
            while($thread = dbarray($rel_thread_res)){
               $i++; $row = $i%2 ? " class='tbl1'" : " class='tbl2'";
               echo "
               <tr>
                  <td class='tbl".$row."'><a href='".FUSION_SELF."?thread_id=".$thread['thread_id']."'>".$thread['thread_subject']."</a></td>
                  <td class='tbl".$row."'>".$thread['forum_name']."</td>
                  <td class='tbl".$row."'>".$thread['thread_postcount']."</td>
                  <td class='tbl".$row."'>".showdate("forumdate", $thread['thread_lastpost'])."</td>
               </tr>";
            }

- after:
            while($thread = dbarray($rel_thread_res)){
               $i++; $row = $i%2 ? " class='tbl1'" : " class='tbl2'";
               echo "
               <tr>
                  <td $row><a href='".FUSION_SELF."?thread_id=".$thread['thread_id']."'>".$thread['thread_subject']."</a></td>
                  <td $row>".$thread['forum_name']."</td>
                  <td $row>".$thread['thread_postcount']."</td>
                  <td $row>".showdate("forumdate", $thread['thread_lastpost'])."</td>
               </tr>";
            }
0 replies
There are no post found.

Category Forum

Panels and Infusions

Labels

None yet

Statistics

  • Views 0 views
  • Posts 0 posts
  • Votes 0 votes
  • Topic users 1 member

1 participant

S
S
  • Veteran Member, joined since
  • Contributed 920 posts on the community forums.
  • Started 79 threads in the forums
  • Started this discussions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet