Consider the following example:
if ( isset($_POST['type']) && 'page' == $_POST['type'] )
return;
Do we need the isset($_POST['type'])
check?
From what I've seen so far the following has the seem result:
if ( 'page' == $_POST['type'] )
return;
Or can this cause problems in certain situations?