Well, I continued troubleshooting the issue. The weird part is I get the error with the customized style, but not the default style. My first thought was that the biggest difference between my customized style and the default style was the header. So, I copied my header from the custom style and pasted it into my default style and TADA -- Operation Aborted error message!
I systematically went through and removed code by code to figure out what it was that caused the Operation Aborted error. It turns out, the conflict is an open-ended table in the header used for making a left column.
Code:
<!-- content table -->
$spacer_open
$_phpinclude_output
$welcomeheaders
<table border=0 cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" width=100% valign="top">
<tr>
<td width="145">
</td>
<td>
This caused the error message. I simply ended the table with a </td></table> and TADA no error message. So, there's the culprit for ME atleast... if Doctor Death can chime in, maybe he has the same type of header with a left column code.
@ magnus -- Any ideas on what would cause that with an open ended table that encompasses everything between the header and footer?