I started working on the site system again in a long time and I updated the skinning system. The problem is that in Firefox it works but in IE it doesn't.
Heres whats going on. The skin system uses meta refresh to send the user back to the page they came from, but when refreshing in IE it sends the user to the same page, which makes a refreshing loop.
The code to refresh to the page the user came from using PHP's HTTP_REFERER:
CODE
<meta http-equiv='refresh' content='0; URL=<?php echo $_SERVER['HTTP_REFERER']; ?>">
Is there an alternate way to do it, or is there anything that I could do to work around it. The reason I want the users to go back to the page that they were on is because they might have been doing something at the time and is so much more convenient for them. So going back to the same page is vital.
-Mackins