summaryrefslogtreecommitdiff
path: root/pages/account/22.php
diff options
context:
space:
mode:
authorINOPIAE <inopiae@cacert.org>2013-07-14 21:18:12 +0200
committerINOPIAE <inopiae@cacert.org>2013-07-14 21:18:12 +0200
commit59117bddf6b856ff0107516c5755e1edbd003cbe (patch)
treea42be7e70d1db21f2764cbe7d7cf2871a7536d8d /pages/account/22.php
parent7517a7273f5c8bd4f95bf6862d3093da86db105d (diff)
downloadcacert-devel-59117bddf6b856ff0107516c5755e1edbd003cbe.tar.gz
cacert-devel-59117bddf6b856ff0107516c5755e1edbd003cbe.tar.xz
cacert-devel-59117bddf6b856ff0107516c5755e1edbd003cbe.zip
bug 1010: deleted d in variable name
Diffstat (limited to 'pages/account/22.php')
-rw-r--r--pages/account/22.php6
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;