Plugin Directory

Changeset 2845614

Timestamp:
01/09/2023 03:37:38 PM (19 months ago)
Author:
iamjafran
Message:

FIXED Appsero integration method conflicts

Location:
wp-dark-mode
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-dark-mode/tags/4.0.1/includes/base.php

    r2844274 r2845614  
    7474                     */
    7575                    $wpdm_plugin = new \WPPOOL\Plugin( 'wp_dark_mode' );
    76                     $wpdm_plugin->appsero();
     76
     77                    if ( method_exists( $wpdm_plugin, 'appsero' ) ) {
     78                        $wpdm_plugin->appsero();
     79                    }
    7780                }
    7881
  • wp-dark-mode/trunk/includes/base.php

    r2844274 r2845614  
    7474                     */
    7575                    $wpdm_plugin = new \WPPOOL\Plugin( 'wp_dark_mode' );
    76                     $wpdm_plugin->appsero();
     76
     77                    if ( method_exists( $wpdm_plugin, 'appsero' ) ) {
     78                        $wpdm_plugin->appsero();
     79                    }
    7780                }
    7881
Note: See TracChangeset for help on using the changeset viewer.