diff options
-rw-r--r-- | includes/account.php | 12 | ||||
-rw-r--r-- | pages/account/18.php | 2 | ||||
-rw-r--r-- | pages/account/22.php | 4 |
3 files changed, 9 insertions, 9 deletions
diff --git a/includes/account.php b/includes/account.php index 3b9e685..32788b8 100644 --- a/includes/account.php +++ b/includes/account.php @@ -2208,17 +2208,17 @@ if($oldid == 22 && array_key_exists('filter',$_REQUEST) && $_REQUEST['filter']!= "") { $id=22; - $_SESSION['_config']['orgfilterid']=$_REQUEST['orgfilterid']; - $_SESSION['_config']['sorting']=$_REQUEST['sorting']; - $_SESSION['_config']['status']=$_REQUEST['status']; + $_SESSION['_config']['dorgfilterid']=$_REQUEST['orgfilterid']; + $_SESSION['_config']['dsorting']=$_REQUEST['sorting']; + $_SESSION['_config']['dstatus']=$_REQUEST['status']; } if($oldid == 22 && array_key_exists('reset',$_REQUEST) && $_REQUEST['reset']!= "") { $id=22; - $_SESSION['_config']['orgfilterid']=0; - $_SESSION['_config']['sorting']=0; - $_SESSION['_config']['status']=0; + $_SESSION['_config']['dorgfilterid']=0; + $_SESSION['_config']['dsorting']=0; + $_SESSION['_config']['dstatus']=0; } diff --git a/pages/account/18.php b/pages/account/18.php index e1b92a5..8196506 100644 --- a/pages/account/18.php +++ b/pages/account/18.php @@ -39,7 +39,7 @@ $status = array_key_exists('status',$_SESSION['_config']) ? intval($_SESSION['_c ORDER BY `orginfo`.`O` "; $reso = mysql_query($query); if(mysql_num_rows($reso) >= 1){ - while($row = mysql_fetch_assoc($res)){ + while($row = mysql_fetch_assoc($reso)){ printf("<option value='%d' %s>%s</option>",$row['id'], $row['id'] == $orgfilterid? " selected" : "" , $row['O']); } }?> diff --git a/pages/account/22.php b/pages/account/22.php index 581e19a..50f2b81 100644 --- a/pages/account/22.php +++ b/pages/account/22.php @@ -38,7 +38,7 @@ $status = array_key_exists('dstatus',$_SESSION['_config']) ? intval($_SESSION['_ ORDER BY `orginfo`.`O` "; $reso = mysql_query($query); if(mysql_num_rows($reso) >= 1){ - while($row = mysql_fetch_assoc($res)){ + while($row = mysql_fetch_assoc($reso)){ printf("<option value='%d' %s>%s</option>",$row['id'], $row['id'] == $orgfilterid? " selected" : "" , $row['O']); } }?> @@ -86,7 +86,7 @@ $status = array_key_exists('dstatus',$_SESSION['_config']) ? intval($_SESSION['_ if($orgfilterid>0) { - $query .= "AND `org`.`orgid`=$dorgfilterid "; + $query .= "AND `org`.`orgid`=$orgfilterid "; } if(0==$status) |