Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions inc/function-options.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class GOVPH

public function __construct()
{
$this->options = get_option('govph_options');
$this->options = get_option('govph_options', array());
// to avoid warnings, reinstatiate all arrays that does not exist
if(sizeof($this->options) > 0){
$this->options = array_merge($this->_default_options, $this->options);
Expand Down Expand Up @@ -1056,4 +1056,4 @@ function govph_displayoptions( $options ){
echo $bg;
break;
}
}
}