get_option() buggy with FALSE
-
update_option('myboolean', FALSE); $option = get_option('myboolean', 'default');Question: what is the value of
$option?It should be
FALSE, because that is the value that is set by the user in the database. However, all booleanFALSEvalues seem to return the$defaultparameter. The$defaultparameter should only be returned when the option does not exist in the database. Right?
The topic ‘get_option() buggy with FALSE’ is closed to new replies.