<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Francis Casson wrote:
<blockquote
 cite="mid7c2c95c80703160227l5d76db37v1d0e743c0ef26e0a@mail.gmail.com"
 type="cite"><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 'notify list'<br>
selection box?&nbsp;&nbsp;Only when it'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't use, 1=minor edit 2=notify list.</blockquote>
    </div>
    </span></div>
  </blockquote>
  <div><br>
You could also try<br>
  <br>
if ( @$_POST['diffclass'] != 'minor' ) $EnableNotify=1;
  <br>
  <br>
in your config.php (but I haven't tested this as I don't use Notify.)<br>
  <br>
This
way, only 'major' edits send notify messages, but it doesn't let you
select minor edits separately from the notify option - to do that you'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['diffclass'] == 'minor' ) $EnableNotify=1;<br>
  <br>
  </div>
  </div>
</blockquote>
So using your second suggestion, all it seems one would need to get it
to fully work as I want is find the text in the edit box that says
'this is a minor edit' and change it to "Notify the Email List".&nbsp;
Anyone know where that text is located? <br>
<br>
I suppose ideally, the 'minor edit' check box text should be made a
variable that one could set in some sort of site.setup file or local
config to whatever one wanted.&nbsp; Perhaps it already is?&nbsp; <br>
<pre class="moz-signature" cols="72">-- 

Always, Dr Fred C
<a class="moz-txt-link-abbreviated" href="mailto:drfredc@drfredc.com">drfredc@drfredc.com</a></pre>
</body>
</html>