On the page of a Drupal subforum like this one you'll find in the sourcecode a field-attribute that is no part of the XHTML standard (and as far as I know any standard at all):

<thead><tr><th field="">&nbsp;</th>

I haven't been able to find the template function responsible for this part of code. I was hoping someone over here could point me in the right direction.

Comments

Xano’s picture

Kick.

Xano’s picture

Kick.

Heine’s picture

Posting bugreports is best done in the issue tracker: http://drupal.org/node/add/project-issue/drupal

The line responsible is forum.module: 774 ( array('data' => ' ', 'field' => NULL), ) because of the way theme_table works. Removing the second part of the line ('field' => NULL) might do the trick.

--
The Manual | Troubleshooting FAQ | Tips for posting | How to report a security issue.

Xano’s picture

I didn't what code caused this bug. Therefore I wanted to make things clear with the help from others on the forum before actually creating a new issue.