* @param string $name Name of the configuration value
* @param int $site_guid NULL for installation setting, 0 for default site
*
- * @return mixed Configuration value or false if it does not exist
+ * @return mixed Configuration value or null if it does not exist
* @since 1.8.0
*/
function elgg_get_config($name, $site_guid = 0) {
return $value;
}
- return false;
+ return null;
}
/**
* @param string $name The name of the config value
* @param int $site_guid Optionally, the GUID of the site (current site is assumed by default)
*
- * @return mixed|false
+ * @return mixed|null
* @see set_config()
* @see unset_config()
*/
return $result;
}
- return false;
+ return null;
}
/**