Code

. stop sending blank (whitespace-only) notes
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 2 Apr 2002 01:56:10 +0000 (01:56 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Tue, 2 Apr 2002 01:56:10 +0000 (01:56 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@688 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
roundup/cgi_client.py

index bca00229d1fb93f12f4ced8169fbca881d0083ca..1f3b81b93fcbd153dbeb2723aefb6bf9379ac848 100644 (file)
@@ -16,6 +16,10 @@ Feature:
     </property>
    </td>
 
+Fixed:
+ . stop sending blank (whitespace-only) notes
+
+
 2002-03-25 - 0.4.1
 Feature:
  . use blobfiles in back_anydbm which is used in back_bsddb.
index f466e7d0a1b0297594cf1b9a8467de3282f2dc80..9482b391039da64be8a77f874821737cd614ec46 100644 (file)
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: cgi_client.py,v 1.114 2002-03-17 23:06:05 richard Exp $
+# $Id: cgi_client.py,v 1.115 2002-04-02 01:56:10 richard Exp $
 
 __doc__ = """
 WWW request handler (also used in the stand-alone server).
@@ -663,7 +663,7 @@ function help_window(helpurl, width, height) {
         # in a nutshell, don't do anything if there's no note or there's no
         # NOSY
         if self.form.has_key('__note'):
-            note = self.form['__note'].value
+            note = self.form['__note'].value.strip()
         if not props.has_key('messages'):
             return None, files
         if not isinstance(props['messages'], hyperdb.Multilink):
@@ -1357,6 +1357,9 @@ def parsePropsFromForm(db, cl, form, nodeid=0):
 
 #
 # $Log: not supported by cvs2svn $
+# Revision 1.114  2002/03/17 23:06:05  richard
+# oops
+#
 # Revision 1.113  2002/03/14 23:59:24  richard
 #  . #517734 ] web header customisation is obscure
 #