On Wed, Apr 18, 2007 at 10:05:54AM +0100, Hans wrote:
>
> Another way might be to add to config.php:
>
> if($action=='comment') {
> $RecentChangesFmt['$SiteGroup.AllRecentChanges'] = '';
> $RecentChangesFmt['$Group.RecentChanges'] = '';
> }
Better might be:
if ($action == 'comment') unset($RecentChangesFmt);
Pm