Plugin Directory

Changeset 1946608


Ignore:
Timestamp:
09/25/2018 08:25:30 AM (8 years ago)
Author:
storespot
Message:

Bug fix

Location:
storespot
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • storespot/tags/1.0.3/includes/class-storespot.php

    r1946605 r1946608  
    7676    private function fb_integration_installed($pixel_id) {
    7777        $fb_option = get_option('facebook_config');
    78         if ( $fb_option && array_key_exists( 'pixel_id' ) ) {
     78        if ( $fb_option && array_key_exists( 'pixel_id', $fb_option ) ) {
    7979            if ( $fb_option['pixel_id'] == $pixel_id) {
    8080                return true;
  • storespot/trunk/includes/class-storespot.php

    r1946605 r1946608  
    7676    private function fb_integration_installed($pixel_id) {
    7777        $fb_option = get_option('facebook_config');
    78         if ( $fb_option && array_key_exists( 'pixel_id' ) ) {
     78        if ( $fb_option && array_key_exists( 'pixel_id', $fb_option ) ) {
    7979            if ( $fb_option['pixel_id'] == $pixel_id) {
    8080                return true;
Note: See TracChangeset for help on using the changeset viewer.