mormegil007
10-14-2010, 04:57 PM
To me, it looks like a loop of emptiness. I can't find where it is set except where it says something like:
$GLOBALS['from'] = str_replace('&', '|', str_replace('&from=' . $_REQUEST['from'], '', $_SERVER['QUERY_STRING']));
But every query string in a url, like:
<a href="admin.php?action=edit&id=' . $row['word_id'] . '&from=' . $GLOBALS['from'] . '">
does not contain any actual variables ever. It just contains either $GLOBALS['from'], $_REQUEST['from'], or [TOKEN_FROM] (which isn't set anywhere).
Where is the information for 'from' supposed to come from? (Or what am I missing?)
$GLOBALS['from'] = str_replace('&', '|', str_replace('&from=' . $_REQUEST['from'], '', $_SERVER['QUERY_STRING']));
But every query string in a url, like:
<a href="admin.php?action=edit&id=' . $row['word_id'] . '&from=' . $GLOBALS['from'] . '">
does not contain any actual variables ever. It just contains either $GLOBALS['from'], $_REQUEST['from'], or [TOKEN_FROM] (which isn't set anywhere).
Where is the information for 'from' supposed to come from? (Or what am I missing?)