mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-13 11:58:48 +00:00
Update false evaluations
update false to is_null where needed.
This commit is contained in:
parent
f974346d9a
commit
cdc69179fa
4 changed files with 22 additions and 14 deletions
|
@ -45,8 +45,9 @@ function notimeline_settings(&$a,&$s) {
|
|||
/* Get the current state of our config variable */
|
||||
|
||||
$notimeline = PConfig::get(local_user(),'system','no_wall_archive_widget');
|
||||
if($notimeline === false)
|
||||
if(is_null($notimeline)) {
|
||||
$notimeline = false;
|
||||
}
|
||||
|
||||
$notimeline_checked = (($notimeline) ? ' checked="checked" ' : '');
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue