Plugin Directory

Changeset 3257682


Ignore:
Timestamp:
03/18/2025 09:46:25 AM (10 months ago)
Author:
crazypsycho
Message:

fix php warning

Location:
adminquickbar
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • adminquickbar/tags/1.9.3/Lib/Sidebar.php

    r3257671 r3257682  
    280280                foreach ( $postCategories as $postCategory ) {
    281281                    if ( $postType->name === 'elementor_library' ) {
    282                         $categoryName = $templateTypesByPostId[$post->ID];
     282                        $categoryName = $templateTypesByPostId[$post->ID] ?? 'unknown';
    283283                    } elseif ( empty( $postCategory ) || empty( $this->categoryList[$postCategory] ) ) {
    284284                        $categoryName = 'none';
  • adminquickbar/trunk/Lib/Sidebar.php

    r3257671 r3257682  
    280280                foreach ( $postCategories as $postCategory ) {
    281281                    if ( $postType->name === 'elementor_library' ) {
    282                         $categoryName = $templateTypesByPostId[$post->ID];
     282                        $categoryName = $templateTypesByPostId[$post->ID] ?? 'unknown';
    283283                    } elseif ( empty( $postCategory ) || empty( $this->categoryList[$postCategory] ) ) {
    284284                        $categoryName = 'none';
Note: See TracChangeset for help on using the changeset viewer.