fixed sorting if register_globals was off
This commit is contained in:
parent
221bcf0e7f
commit
64e2bb734f
|
@ -30,6 +30,9 @@ include_once ("../../lib/status.inc");
|
||||||
session_save_path("../../sess");
|
session_save_path("../../sess");
|
||||||
@session_start();
|
@session_start();
|
||||||
|
|
||||||
|
// get sorting column when register_globals is off
|
||||||
|
$list = $_GET['list'];
|
||||||
|
|
||||||
// check if button was pressed and if we have to add/delete a group
|
// check if button was pressed and if we have to add/delete a group
|
||||||
if ($_POST['new_group'] || $_POST['del_group']){
|
if ($_POST['new_group'] || $_POST['del_group']){
|
||||||
// add new group
|
// add new group
|
||||||
|
|
|
@ -30,6 +30,9 @@ include_once ("../../lib/status.inc");
|
||||||
session_save_path("../../sess");
|
session_save_path("../../sess");
|
||||||
@session_start();
|
@session_start();
|
||||||
|
|
||||||
|
// get sorting column when register_globals is off
|
||||||
|
$list = $_GET['list'];
|
||||||
|
|
||||||
// check if button was pressed and if we have to add/delete a host
|
// check if button was pressed and if we have to add/delete a host
|
||||||
if ($_POST['new_host'] || $_POST['del_host']){
|
if ($_POST['new_host'] || $_POST['del_host']){
|
||||||
// add new host
|
// add new host
|
||||||
|
|
Loading…
Reference in New Issue