// Calling "$title = $parser->getTitle(); $title->invalidateCache();" doesn't help here to force regeneration
// However, this would not be the best solution because the page has to be re-rendered only at midnight
- return replaceByMarker(wrReportFormRender(TRUE, $parser->getTitle()->getText(), NULL, NULL, NULL, $author_name));
+ // In the following line, $author_name was replaced by NULL to prevent a bug, where the wrong author_name
+ // is shown (see ticket #35). TODO: Find reason.
+ // return replaceByMarker(wrReportFormRender(TRUE, $parser->getTitle()->getText(), NULL, NULL, NULL, $author_name));
+ return replaceByMarker(wrReportFormRender(TRUE, $parser->getTitle()->getText(), NULL, NULL, NULL, NULL));
}