diff options
Diffstat (limited to 'pages/account/18.php')
-rw-r--r-- | pages/account/18.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pages/account/18.php b/pages/account/18.php index d294f1b..5d45f37 100644 --- a/pages/account/18.php +++ b/pages/account/18.php @@ -17,11 +17,11 @@ */ $orgfilterid=0; -if(array_key_exists('orgfilterid',$_REQUEST)) $orgfilterid=intval($_REQUEST['orgfilterid']); +if(array_key_exists('orgfilterid',$_SESSION['_config'])) $orgfilterid=intval($_SESSION['_config']['orgfilterid']); $sorting=0; -if(array_key_exists('sorting',$_REQUEST)) $sorting=intval($_REQUEST['sorting']); +if(array_key_exists('sorting',$_SESSION['_config'])) $sorting=intval($_SESSION['_config']['sorting']); $status=0; -if(array_key_exists('status',$_REQUEST)) $status=intval($_REQUEST['status']); +if(array_key_exists('status',$_SESSION['_config'])) $status=intval($_SESSION['_config']['status']); ?> <form method="post" action="account.php"> <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> |