Changeset 1142

Show
Ignore:
Timestamp:
01/22/08 16:53:31 (9 months ago)
Author:
earle
Message:

Change comments show up in user stats too - add link parsing.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wiki.cgi

    r1105 r1142  
    268268    @nodes = map { {name          => $q->escapeHTML($_->{name}), 
    269269            last_modified => $q->escapeHTML($_->{last_modified}), 
    270             comment       => $q->escapeHTML($_->{metadata}{comment}[0]), 
     270            comment       => OpenGuides::Utils::parse_change_comment( 
     271                $q->escapeHTML($_->{metadata}{comment}[0]), 
     272                $script_url . '?', 
     273            ), 
    271274            url           => "$script_name?" 
    272275          . $q->escape($formatter->node_name_to_node_param($_->{name})) }