Skip to content

Commit

Permalink
Fixed Bug: corrected error in $_GET, $_POST updates - $activate shoul…
Browse files Browse the repository at this point in the history
…d have been $action

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@144 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Mar 25, 2003
1 parent fc51d01 commit 15328cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/admin.php
Expand Up @@ -37,7 +37,7 @@
$gid = $_GET['gid']; if (!$gid) {$gid=$_POST['gid'];}
$qid = $_GET['qid']; if (!$qid) {$qid=$_POST['qid'];}
$code = $_GET['code']; if (!$code) {$code=$_POST['code'];}
$activate = $_GET['action']; if (!$activate) {$active=$_POST['action'];}
$action = $_GET['action']; if (!$action) {$action=$_POST['action'];}
$ok = $_GET['ok']; if (!$ok) {$ok = $_POST['ok'];}
$user = $_GET['user']; if (!$user) {$user = $_POST['user'];}

Expand Down

0 comments on commit 15328cb

Please sign in to comment.