From: Tom C. <tom...@us...> - 2005-01-05 04:55:02
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10826 Modified Files: Tag: stable-1_2 ChangeLog template.c Log Message: Fix typo that broke autoresponder subject display. (from John Peacock) Index: template.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/template.c,v retrieving revision 1.7.2.10 retrieving revision 1.7.2.11 diff -u -d -r1.7.2.10 -r1.7.2.11 --- template.c 31 Dec 2004 01:38:33 -0000 1.7.2.10 +++ template.c 5 Jan 2005 04:54:52 -0000 1.7.2.11 @@ -234,7 +234,7 @@ /* take off newline */ i = strlen(TmpBuf2); --i; TmpBuf2[i] = 0; - printh (" <td><input type=\"text\" size=40 name=\"alias\" maxlength=128 value=\"%h\"></td>\n", + printh (" <td><input type=\"text\" size=40 name=\"alias\" maxlength=128 value=\"%H\"></td>\n", &TmpBuf2[9]); printf (" <td> </td>\n"); printf (" </tr>\n"); Index: ChangeLog =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/ChangeLog,v retrieving revision 1.15.2.50 retrieving revision 1.15.2.51 diff -u -d -r1.15.2.50 -r1.15.2.51 --- ChangeLog 3 Jan 2005 20:31:09 -0000 1.15.2.50 +++ ChangeLog 5 Jan 2005 04:54:51 -0000 1.15.2.51 @@ -3,6 +3,9 @@ 1.2.7 - unreleased + John Peacock + - template.c: Fix typo that broke autoresponder subject display. + Tom Collins - Add Quick Links section to main menu. Admins can now enter an email address and go directly to the modify or delete page, |