diff --git a/framework/core/src/Core/Models/User.php b/framework/core/src/Core/Models/User.php index 131530b83..126b938c5 100755 --- a/framework/core/src/Core/Models/User.php +++ b/framework/core/src/Core/Models/User.php @@ -200,7 +200,7 @@ class User extends Model */ public function getBioHtmlAttribute($value) { - if (! $value) { + if ($value === null) { $this->bio_html = $value = static::formatBio($this->bio); $this->save(); }