diff options
Diffstat (limited to 'pages/account/22.php')
-rw-r--r-- | pages/account/22.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pages/account/22.php b/pages/account/22.php index 2c159f6..581e19a 100644 --- a/pages/account/22.php +++ b/pages/account/22.php @@ -84,17 +84,17 @@ $status = array_key_exists('dstatus',$_SESSION['_config']) ? intval($_SESSION['_ where `org`.`memid`='".intval($_SESSION['profile']['id'])."' and `orgdomaincerts`.`orgid`=`org`.`orgid` and `orginfo`.`id` = `org`.`orgid`"; - if($dorgfilterid>0) + if($orgfilterid>0) { $query .= "AND `org`.`orgid`=$dorgfilterid "; } - if(0==$dstatus) + if(0==$status) { $query .= "AND `revoked`=0 AND `renewed`=0 "; $query .= "HAVING `timeleft` > 0 "; } - switch ($dsorting){ + switch ($sorting){ case 0: $query .= "ORDER BY `orginfo`.`O`, `orgdomaincerts`.`expire` desc"; break; |