CMS MADE SIMPLE FORGE

Questions

 

[#1401] Summary fields don't line up with column headings, because default template generates bad HTML

avatar
Created By: Mike Beckish (mbeckish)
Date Submitted: Tue Mar 13 16:14:56 -0400 2007

Assigned To:
Version: None
CMSMS Version: None
Severity: Major
Resolution: Accepted
State: Open
Summary:
Summary fields don't line up with column headings, because default template generates bad HTML
Detailed Description:
The default summary template closes the table tag right after the column
headings, instead of after the rows of questions and answers.

Fix:

Move "</table>" from:

...
    <th>{$label_more}</th>
  </tr>
</table>
...

to:

...
  </tr>
{/foreach}
</table>


History