Home : Products : Gossamer Links : Development, Plugins and Globals :

Products: Gossamer Links: Development, Plugins and Globals: Re: [Paul] Icky Loop: Edit Log

Here is the list of edits for this post
Re: [Paul] Icky Loop
This is so weird...its happening on two different copies of Links SQL

I had:

Code:
if ($variable->{payment_status} !~ /completed/i) {
print $IN->header();
print Links::SiteHTML::display('cart_verify_error', { incomplete => 1 } );
return;
}

....which caused the loop and nearly crashed the server, but when I changed it to:

Code:
if ($variable->{payment_status} !~ /completed/i) {
print $IN->header();
print "DIE";
#print Links::SiteHTML::display('cart_verify_error', { incomplete => 1 } );
return;
}
...it worked fine.

What can be causing it to loop? ugh.

Last edited by:

Paul: Apr 23, 2002, 5:27 AM

Edit Log: