[pmwiki-users] Get history/diff in Site.AllRecentChanges ?

Lucian Wischik lu.gmane at wischik.com
Thu Nov 16 00:52:42 CST 2006


Lucian Wischik <lu.gmane <at> wischik.com> writes:
>   $diff2=str_replace(array("<",">"),array("&lt;","&gt;"),$diff2);
>   $ChangeSummary=$diff2;
> }

That should instead be

  $diff2=str_replace(array("<",">"),array("&lt;","&gt;"),$diff2);
  $ChangeSummary=$diff2;  
  $new['csum']=$ChangeSummary;
}
$FeedFmt['rss']['item']['description'] = '$LastModifiedSummary';


Explanation: setting $new['csum'] will write the change summary
into the file in wiki.d. And the FeedFmt command will include
all the hard work we've done into the rss feed.





More information about the pmwiki-users mailing list