diff options
| author | ziejd2 | 2021-02-24 23:47:31 -0600 |
|---|---|---|
| committer | GitHub | 2021-02-24 23:47:31 -0600 |
| commit | 461b524acee8cd74d56fe4e090c5eeb684d04141 (patch) | |
| tree | 1e6eb80df82a865f63288a7a163a032fe48cfe0f | |
| parent | 021bc0bfd3af1d5ecd07b389aec4da173b212dc7 (diff) | |
| download | BNW-461b524acee8cd74d56fe4e090c5eeb684d04141.tar.gz | |
Update create_tiers_gom_part2.php
| -rw-r--r-- | sourcecodes/create_tiers_gom_part2.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sourcecodes/create_tiers_gom_part2.php b/sourcecodes/create_tiers_gom_part2.php index 62422781..f97d9bf8 100644 --- a/sourcecodes/create_tiers_gom_part2.php +++ b/sourcecodes/create_tiers_gom_part2.php @@ -79,14 +79,14 @@ $keyval=valid_keyval($keyval); <?php -if(isset($HTTP_POST_VARS["bantext"])) +if(isset($_POST["bantext"])) { - $ban_search=$HTTP_POST_VARS["searchkey"]; + $ban_search=$_POST["searchkey"]; } -if(isset($HTTP_POST_VARS["whitetext"])) +if(isset($_POST["whitetext"])) { - $white_search=$HTTP_POST_VARS["searchkey"]; + $white_search=$_POST["searchkey"]; } ?> |
