View Single Post
Old 07-03-2008, 08:28 PM   #3 (permalink)
delayedinsanity
is cute and cuddly
 
delayedinsanity's Avatar
 
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
delayedinsanity is on a distinguished road
Default

First thing I noticed is that on most of the pages you're checking $_SESSION['logged'] and then suddenly on the edit page you're checking $_REQUEST['id'], as well as there being no session started on those pages.

You should probably go back over your scripts and create some kind of uniform check to see if the user is logged in, and redirect them if they're not. Perhaps a function inside one of your common includes? isLoggedIn()? Or however you want to do it.
-m
delayedinsanity is offline  
Reply With Quote
The Following User Says Thank You to delayedinsanity For This Useful Post:
codefreek (07-03-2008)