Skip to content

Commit

Permalink
fixed set_system_var bug (issue #39)
Browse files Browse the repository at this point in the history
  • Loading branch information
REJack committed May 19, 2015
1 parent 08affa2 commit 1271388
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/libraries/Aauth.php
Original file line number Diff line number Diff line change
Expand Up @@ -2025,7 +2025,7 @@ public function list_user_var_keys($user_id = FALSE){
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,
Expand Down

0 comments on commit 1271388

Please sign in to comment.