Hi,
I had some trouble with the news module in 2.7. The page for adding comments looked
bad. It started with several input fields with the text "leave this field sth. blank".
In comment_page.php I found that this was supposed to be honeypots for spammers, it should not be displayed to non-spammers like me, though. These lines were displayed, because the class nixhier in frontend.css was not recognised, because frontend.css was not included at all.
I fixed it by copying these lines from view.php of the news module to comment_page.php:
// check if frontend.css file needs to be included into the <body></body> of view.php
if((!function_exists('register_frontend_modfiles') || !defined('MOD_FRONTEND_CSS_REGISTERED')) && file_exists(WB_PATH .'/modules/news/frontend.css')) {
echo '<style type="text/css">';
include(WB_PATH .'/modules/news/frontend.css');
echo "\n</style>\n";
}
Cheers, Ralf.