Skip to content

Commit

Permalink
Fix undefined variable
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsternberg committed Apr 4, 2015
1 parent 64bc7cc commit bb832bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/CMB2_Options.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function __construct( $option_key = '' ) {
public function delete_option() {
$deleted = $this->key ? delete_option( $this->key ) : true;
$this->options = $deleted ? array() : $this->options;
return $result;
return $this->options;
}

/**
Expand Down

0 comments on commit bb832bb

Please sign in to comment.