Reviewed by David Kilzer.
https://bugs.webkit.org/show_bug.cgi?id=39090
* Bugzilla/BugMail.pm:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@59500
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
&& !($user->groups->{Bugzilla->params->{'insidergroup'}})
) {
$add_diff = 0;
+#if WEBKIT_CHANGES
+ # If the only thing we are modifying is the in-rietveld flag, don't
+ # include this diff. If multiple flags are being modified,
+ # the diff text will have a comma seperating it.
+ # This will prevent mail from being sent.
+ } elsif ($diff->{'text'} =~ /in-rietveld/ && !($diff->{'text'} =~ /,/)) {
+ $add_diff = 0;
+#endif // WEBKIT_CHANGES
} else {
$add_diff = 1;
}
+2010-05-13 Julie Parent <jparent@chromium.org>
+
+ Reviewed by David Kilzer.
+
+ Bugzilla: Don't send mail if the only change is to the in-rietveld flag.
+
+ https://bugs.webkit.org/show_bug.cgi?id=39090
+
+ * Bugzilla/BugMail.pm:
+
2010-05-12 Julie Parent <jparent@chromium.org>
Reviewed by Ojan Vafai.