postvisadmin-develop Mailing List for PostVis Admin
Brought to you by:
roger_smith
You can subscribe to this list here.
2009 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|
From: Jeff G. <je...@st...> - 2009-04-16 15:42:17
|
I had to change admin/messageview.php today so I could use the "View as HTML", "View as Plain Text", and "View Headers" buttons in the Quarantine section. Sorry, I don't know how to create a patch, but here is a diff output of the two files. The url said "/admin/messageview.php", I had to change it to just "messageview.php". 80,81c80,81 < echo "<tr><td colspan='2'><form><table width='100%' class='text' border='0'><tr background='../images/butonbackground.jpg'><td><center><input value='View HTML' class='footertext' onclick='myRef = window.open(\"/admin/messageviewall.php?mail_id=$mail_id&format=html\",\"mywin\",\"left=20,top=20,width=925,height=600,toolbar=1,resizable=0,scrollbars=1\");myRef.focus()' type='button'></center> < </td><td><center><input value='View Plain Text' class='footertext' onclick='myRef = window.open(\"/admin/messageviewall.php?mail_id=$mail_id&format=plain\",\"mywin\",\"left=20,top=20,width=925,height=600,toolbar=1,resizable=0,scrollbars=1\");myRef.focus()' type='button'></center></td><td><center><input value='View Full Headers' class='footertext' onclick='myRef = window.open(\"/admin/viewheaders.php?mail_id=$mail_id\",\"mywin\",\"left=20,top=20,width=925,height=600,toolbar=1,resizable=0,scrollbars=1\");myRef.focus()' type='button'></center></td></tr></table></form></td></tr>"; --- > echo "<tr><td colspan='2'><form><table width='100%' class='text' border='0'><tr background='../images/butonbackground.jpg'><td><center><input value='View HTML' class='footertext' onclick='myRef = window.open(\"messageviewall.php?mail_id=$mail_id&format=html\",\"mywin\",\"left=20,top=20,width=925,height=600,toolbar=1,resizable=0,scrollbars=1\");myRef.focus()' type='button'></center> > </td><td><center><input value='View Plain Text' class='footertext' onclick='myRef = window.open(\"messageviewall.php?mail_id=$mail_id&format=plain\",\"mywin\",\"left=20,top=20,width=925,height=600,toolbar=1,resizable=0,scrollbars=1\");myRef.focus()' type='button'></center></td><td><center><input value='View Full Headers' class='footertext' onclick='myRef = window.open(\"viewheaders.php?mail_id=$mail_id\",\"mywin\",\"left=20,top=20,width=925,height=600,toolbar=1,resizable=0,scrollbars=1\");myRef.focus()' type='button'></center></td></tr></table></form></td></tr>"; |