[Zope-Checkins] SVN: Zope/trunk/ MailHost manage form no longer interprets the value None as a string in user and password fields.

Alec Mitchell alecpm at gmail.com
Tue Sep 29 20:22:27 EDT 2009


Log message for revision 104627:
  MailHost manage form no longer interprets the value None as a string in user and password fields.
  

Changed:
  U   Zope/trunk/doc/CHANGES.rst
  U   Zope/trunk/src/Products/MailHost/dtml/manageMailHost.dtml

-=-
Modified: Zope/trunk/doc/CHANGES.rst
===================================================================
--- Zope/trunk/doc/CHANGES.rst	2009-09-29 20:34:54 UTC (rev 104626)
+++ Zope/trunk/doc/CHANGES.rst	2009-09-30 00:22:27 UTC (rev 104627)
@@ -64,6 +64,9 @@
 
 - MailHost no longer generates garbage when given unicode input.
 
+- MailHost manage form no longer interprets the value None as a string
+  in user and password fields.
+
 - Made C extensions work for 64-bit Python 2.5.x / 2.6.x.
 
 - Unfutzed test failures due to use of naive timezones with ``datetime``

Modified: Zope/trunk/src/Products/MailHost/dtml/manageMailHost.dtml
===================================================================
--- Zope/trunk/src/Products/MailHost/dtml/manageMailHost.dtml	2009-09-29 20:34:54 UTC (rev 104626)
+++ Zope/trunk/src/Products/MailHost/dtml/manageMailHost.dtml	2009-09-30 00:22:27 UTC (rev 104627)
@@ -56,7 +56,7 @@
     </td>
     <td align="left" valign="top">
     <input type="text" name="smtp_uid" size="15"
-     value="&dtml-smtp_uid;"/>
+     value="&dtml.null-smtp_uid;"/>
     </td>
     <td>
     <span class="form-help">(optional for SMTP AUTH)</span>
@@ -70,7 +70,7 @@
     </td>
     <td align="left" valign="top">
     <input type="password" name="smtp_pwd" size="15"
-     value="&dtml-smtp_pwd;"/>
+     value="&dtml.null-smtp_pwd;"/>
     </td>
     <td>
     <span class="form-help">(optional for SMTP AUTH)</span>



More information about the Zope-Checkins mailing list