diff options
author | INOPIAE <inopiae@cacert.org> | 2013-07-16 22:34:34 +0200 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2013-07-16 22:34:34 +0200 |
commit | c1ffb425abb17cd7c639c7a31a53d79e2b7484bb (patch) | |
tree | ee051cc84799eeaa32fe044fb3fe68cb84b0dc54 /pages | |
parent | 470a24fe0553128b6d558f60d1de2b11dab9182b (diff) | |
download | cacert-devel-c1ffb425abb17cd7c639c7a31a53d79e2b7484bb.tar.gz cacert-devel-c1ffb425abb17cd7c639c7a31a53d79e2b7484bb.tar.xz cacert-devel-c1ffb425abb17cd7c639c7a31a53d79e2b7484bb.zip |
bug 1010: fixed variable typo
Diffstat (limited to 'pages')
-rw-r--r-- | pages/account/18.php | 2 | ||||
-rw-r--r-- | pages/account/22.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pages/account/18.php b/pages/account/18.php index 8196506..d3831b9 100644 --- a/pages/account/18.php +++ b/pages/account/18.php @@ -16,7 +16,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -$orgfilterd = array_key_exists('orgfilterid',$_SESSION['_config']) ? intval($_SESSION['_config']['orgfilterid']) : 0; +$orgfilterid = array_key_exists('orgfilterid',$_SESSION['_config']) ? intval($_SESSION['_config']['orgfilterid']) : 0; $sorting = array_key_exists('sorting',$_SESSION['_config']) ? intval($_SESSION['_config']['sorting']) : 0; $status = array_key_exists('status',$_SESSION['_config']) ? intval($_SESSION['_config']['status']) : 0; ?> diff --git a/pages/account/22.php b/pages/account/22.php index 50f2b81..1edb6e7 100644 --- a/pages/account/22.php +++ b/pages/account/22.php @@ -16,7 +16,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -$orgfilterd = array_key_exists('dorgfilterid',$_SESSION['_config']) ? intval($_SESSION['_config']['dorgfilterid']) : 0; +$orgfilterid = array_key_exists('dorgfilterid',$_SESSION['_config']) ? intval($_SESSION['_config']['dorgfilterid']) : 0; $sorting = array_key_exists('dsorting',$_SESSION['_config']) ? intval($_SESSION['_config']['dsorting']) : 0; $status = array_key_exists('dstatus',$_SESSION['_config']) ? intval($_SESSION['_config']['dstatus']) : 0; ?> |