From cdccf5955dcd224a3fce087a8b31cca95a34ef6e Mon Sep 17 00:00:00 2001 From: Frank Bueltge Date: Fri, 15 Mar 2024 16:48:10 +0100 Subject: [PATCH] Fix deprecated check --- inc/class-branding.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/class-branding.php b/inc/class-branding.php index 14bc334..dad03f6 100755 --- a/inc/class-branding.php +++ b/inc/class-branding.php @@ -157,7 +157,7 @@ public function login_footer() { */ public function admin_footer_text( $text ) { - $text_arr = explode( ' • ', $text ); + $text_arr = explode( ' • ', $text ?? '' ); if ( $designer = $this->designer_link() ) { array_unshift( $text_arr, $designer );