<span class="gmail_quote"></span>
<div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><span></span><br><div><span><div><span class="gmail_quote">
On 11/03/07, <b class="gmail_sendername">Dr Fred C</b> &lt;<a href="mailto:drfredc@verizon.net" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">drfredc@verizon.net</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">


Is there a way to change the minor edit box into a &#39;notify list&#39;<br>selection box?&nbsp;&nbsp;Only when it&#39;s clicked would the notify procedure be<br>activated.&nbsp;&nbsp; Ideally, it would seem that this ought to be some sort of
<br>toggle in the config file for a variable of something like Edit select<br>box -- 0=don&#39;t use, 1=minor edit 2=notify list.</blockquote></div></span></div></blockquote><div><br>You could also try<br><br>if ( @$_POST[&#39;diffclass&#39;] != &#39;minor&#39; ) $EnableNotify=1;
<br><br>
in your config.php (but I haven&#39;t tested this as I don&#39;t use Notify.)<br><br>This
way, only &#39;major&#39; edits send notify messages, but it doesn&#39;t let you
select minor edits separately from the notify option - to do that you&#39;d
need to add another checkbox to the edit form and (I think) a handler
from the extra returned form data. You can set minor edits to be the
default by setting (:input e_minorcheckbox checked=1:) on the edit
form.
<br><br>If you want minor edits and not major edits to send the message then you would use<br><br>if ( @$_POST[&#39;diffclass&#39;] == &#39;minor&#39; ) $EnableNotify=1;<br><br>Instead.<br><br> <a href="http://www.pmwiki.org/wiki/Cookbook/MessageAfterPosting" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">

http://www.pmwiki.org/wiki/Cookbook/MessageAfterPosting</a> is a different and completely separate method, not using notify at all - no reason to assume they couldn&#39;t be used at the same time.<br>
<br>
Hope this helps,<br><br>Francis&nbsp;</div><br></div><br>