Plugin Directory

Changeset 2700287


Ignore:
Timestamp:
03/27/2022 06:05:55 PM (4 years ago)
Author:
99robots
Message:

1.1.20 = 2022-03-26

  • FIXED: MultiSite issue with subsites in network
Location:
header-footer-code-manager
Files:
65 added
3 edited

Legend:

Unmodified
Added
Removed
  • header-footer-code-manager/trunk/99robots-header-footer-code-manager.php

    r2699166 r2700287  
    44 * Plugin URI: https://draftpress.com/products
    55 * Description: Header Footer Code Manager by 99 Robots is a quick and simple way for you to add tracking code snippets, conversion pixels, or other scripts required by third party services for analytics, tracking, marketing, or chat functions. For detailed documentation, please visit the plugin's <a href="https://draftpress.com/"> official page</a>.
    6  * Version: 1.1.19
     6 * Version: 1.1.20
    77 * Requires at least: 4.9
    88 * Requires PHP: 5.6.20
     
    9797            require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
    9898            dbDelta( $sql );
    99             add_site_option( 'hfcm_db_version', self::$nnr_hfcm_db_version );
     99            add_option( 'hfcm_db_version', self::$nnr_hfcm_db_version );
    100100        }
    101101
     
    109109
    110110            $table_name = $wpdb->prefix . self::$nnr_hfcm_table;
    111             if ( get_site_option( 'hfcm_db_version' ) != self::$nnr_hfcm_db_version ) {
     111            if ( get_option( 'hfcm_db_version' ) != self::$nnr_hfcm_db_version ) {
    112112                $wpdb->show_errors();
    113113
     
    160160                self::hfcm_options_install();
    161161            }
    162             update_site_option( 'hfcm_db_version', self::$nnr_hfcm_db_version );
     162            update_option( 'hfcm_db_version', self::$nnr_hfcm_db_version );
    163163        }
    164164
  • header-footer-code-manager/trunk/readme.txt

    r2699166 r2700287  
    55Requires PHP: 5.6.20
    66Tested up to: 5.9.2
    7 Stable tag: 1.1.19
     7Stable tag: 1.1.20
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    115115
    116116== Changelog ==
     117= 1.1.20 = 2022-03-26
     118* FIXED: MultiSite issue with subsites in network
     119
    117120= 1.1.19 = 2022-03-24
    118121* FIXED: MultiSite slow query issue
  • header-footer-code-manager/trunk/uninstall.php

    r2643715 r2700287  
    88delete_option( $option_name );
    99
    10 // For site options in Multisite
    11 delete_site_option( $option_name );
    12 
    1310// Drop a custom db table
    1411global $wpdb;
Note: See TracChangeset for help on using the changeset viewer.