From: Tom C. <tom...@us...> - 2004-09-07 05:07:56
|
Update of /cvsroot/qmailadmin/qmailadmin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2890 Modified Files: Tag: stable-1_2 ChangeLog template.c Log Message: Fix invalid HTML in mod_autorespond.html. (patch from Charlie Garrison) Index: template.c =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/template.c,v retrieving revision 1.7.2.1 retrieving revision 1.7.2.2 diff -u -d -r1.7.2.1 -r1.7.2.2 --- template.c 2 Feb 2004 00:39:47 -0000 1.7.2.1 +++ template.c 7 Sep 2004 05:07:45 -0000 1.7.2.2 @@ -199,9 +199,9 @@ TmpBuf3[j] = TmpBuf2[i]; } TmpBuf3[j] = '\0'; - fprintf(actout, "value=\"%s@%s\"><td>\n", TmpBuf3, Domain); + fprintf(actout, "value=\"%s@%s\"></td>\n", TmpBuf3, Domain); } else { - fprintf(actout, "value=\"%s\"><td>\n", &TmpBuf2[1]); + fprintf(actout, "value=\"%s\"></td>\n", &TmpBuf2[1]); } } upperit(ActionUser); Index: ChangeLog =================================================================== RCS file: /cvsroot/qmailadmin/qmailadmin/ChangeLog,v retrieving revision 1.15.2.18 retrieving revision 1.15.2.19 diff -u -d -r1.15.2.18 -r1.15.2.19 --- ChangeLog 26 Aug 2004 00:12:02 -0000 1.15.2.18 +++ ChangeLog 7 Sep 2004 05:07:44 -0000 1.15.2.19 @@ -6,6 +6,9 @@ Rick Widmer - Updated INSTALL documentation (from 2004-05-07). + Charlie Garrison + - Fix invalid HTML in mod_autorespond.html. + Tom Collins - Before considering an alias/forward to be a 'blackhole', make sure it's only a single line. |