<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">
<div><br></div><div>excuse me, that last conditional was supposed to be:</div><div><div><span class="Apple-style-span" style="font-family: monospace; white-space: pre; ">    if (@$_POST['diffclass'] != 'minor') {</span></div><div><font class="Apple-style-span" face="monospace"><span class="Apple-style-span" style="white-space: pre;"><br></span></font></div><div><font class="Apple-style-span" face="monospace"><span class="Apple-style-span" style="white-space: pre;"><br></span></font></div><div><blockquote type="cite"><div><div><font class="Apple-style-span" face="monospace"><span class="Apple-style-span" style="white-space: pre;"><br></span></font></div></div><div><br></div><div>hi</div><div>is this what you're looking for?</div><div>from <a href="http://pmwiki.org/wiki/Cookbook/CustomRecentChanges#minor">http://pmwiki.org/wiki/Cookbook/CustomRecentChanges#minor</a></div><div><p><span class="Apple-tab-span" style="white-space:pre">        </span>Insert the following in your local/config.php </p> <div class="vspace"></div><div class="indent"><pre class="escaped"><span class="Apple-tab-span" style="white-space:pre">        </span>if (@$_POST['diffclass'] == 'minor') {
<span class="Apple-tab-span" style="white-space:pre">        </span>     unset($RecentChangesFmt['$SiteGroup.AllRecentChanges']);
<span class="Apple-tab-span" style="white-space:pre">        </span>     unset($RecentChangesFmt['$Group.RecentChanges']);}</pre> </div><p class="vspace"><span class="Apple-tab-span" style="white-space:pre">        </span>Minor changes made after that will not be included in Site.AllRecentChanges  or the per-group RecentChanges.&nbsp;</p></div><div><br></div><div>and for RSS, assuming you're doing this by enabling the built in 'feeds.php', you can probably do the same as above, though my code looks more like:</div><div><br></div><div>&nbsp;&nbsp;&nbsp;&nbsp;# only add Recent Changes to MyFeedPage if...</div><div><span class="Apple-style-span" style="font-family: monospace; white-space: pre; ">    if (!@$_POST['diffclass'] == 'minor') {</span></div><div><span class="Apple-style-span" style="font-family: monospace; white-space: pre; "><span class="Apple-tab-span" style="white-space: pre; ">        </span>   <span class="Apple-style-span" style="font-family: Verdana; white-space: normal; ">$RecentChangesFmt[$SiteGroup.MyFeedPage] = '* [[{$Group}.{$Name}]] &nbsp;. . . $CurrentTime: {$LastModifiedSummary}';</span></span></div><div><span class="Apple-style-span" style="font-family: monospace; white-space: pre; "><span class="Apple-style-span" style="font-family: Verdana; white-space: normal; "><span class="Apple-style-span" style="font-family: monospace; white-space: pre; ">    }</span></span></span></div><div><div><font class="Apple-style-span" face="monospace"><span class="Apple-style-span" style="white-space: pre; "><br></span></font></div><div><font class="Apple-style-span" face="monospace"><span class="Apple-style-span" style="white-space: pre;"><br></span></font></div></div><div>adam</div><div><br></div><div><br></div><div><br></div></blockquote></div></div></body></html>