Browse Source

fixed set_system_var bug (issue #39)

develop
Raphael Jackstadt 10 years ago
parent
commit
1271388c3f
  1. 2
      application/libraries/Aauth.php

2
application/libraries/Aauth.php

@ -2025,7 +2025,7 @@ class Aauth {
public function set_system_var( $key, $value ) {
// if var not set, set
if ( ! $this->get_system_var($key) ) {
if ($this->get_system_var($key) === FALSE) {
$data = array(
'key' => $key,

Loading…
Cancel
Save