Skip to content

Commit

Permalink
Updated $_GET entries to allow for $_POST equivalents
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@146 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Mar 25, 2003
1 parent 887237c commit 76387ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions admin/browse.php
Expand Up @@ -33,10 +33,10 @@
# Suite 330, Boston, MA 02111-1307, USA. #
#############################################################
*/
$sid = $_GET['sid'];
$action = $_GET['action'];
$id = $_GET['id'];
$limit = $_GET['limit'];
$sid = $_GET['sid']; if (!$sid) {$sid = $_POST['sid'];}
$action = $_GET['action']; if (!$action) {$action = $_POST['action'];}
$id = $_GET['id']; if (!$id) {$id = $_POST['id'];}
$limit = $_GET['limit']; if ($limit) {$limit = $_POST['limit'];}

include("config.php");

Expand Down

0 comments on commit 76387ef

Please sign in to comment.