i have reviewed the current cvs version and found some errors:
- you forgot to delete
$title .= variable_get("feedback_pageheader", "");
(are you doing the patch by hand?)
so you get the title printed twice $title .= "<br><p>" . variable_get("feedback_pageheader", "") . "</p><br>";
the<br><p>is not needed. this breaks some templates
should be$title .= variable_get("feedback_pageheader", "");
cu
Tobias Maier
| Comment | File | Size | Author |
|---|---|---|---|
| feedback.module_2.patch | 776 bytes | Tobias Maier |
Comments
Comment #1
kbahey commentedYes, i patched by hand because the patch did not want to apply.
Anyway, thanks for informing me. It is now fixed.
Comment #2
(not verified) commentedComment #3
(not verified) commentedComment #4
(not verified) commentedComment #5
(not verified) commentedComment #6
(not verified) commented