Plugin Directory

Changeset 3320962


Ignore:
Timestamp:
07/02/2025 06:21:12 AM (9 months ago)
Author:
tealium
Message:

Commit 2.1.19

Location:
tealium/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • tealium/trunk/readme.txt

    r3320756 r3320962  
    55Requires at least: 3.0.1
    66Tested up to: 6.8.1
    7 Stable tag: 2.1.18
     7Stable tag: 2.1.19
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    112112== Changelog ==
    113113
     114= 2.1.19 =
     115* PHP 8 bugfix
     116
    114117= 2.1.18 =
    115118* Added input sanitization to tag config fields provided through the admin console.
     
    217220== Upgrade Notice ==
    218221
     222= 2.1.19 =
     223PHP8 Bugfix
     224
    219225= 2.1.18 =
    220226Added input sanitization to tag config fields provided through the admin console.
  • tealium/trunk/tealium.php

    r3320426 r3320962  
    44Plugin URI: http://tealium.com
    55Description: Adds the Tealium tag and creates a data layer for your WordPress site.
    6 Version: 2.1.18
     6Version: 2.1.19
    77Author: Ian Hampton
    88Author URI: http://tealium.com
     
    9898    global $pagenow;
    9999    $currentScreen = get_current_screen();
    100     if (DISALLOW_FILE_EDIT !== true) {
    101         $tealiumTagCode = get_option( 'tealiumTagCode' );
    102     }
     100    $tealiumTagCode = get_option( 'tealiumTagCode' );
    103101    $tealiumAccount = sanitize_text_field( get_option( 'tealiumAccount' ) );
    104102    $tealiumProfile = sanitize_text_field( get_option( 'tealiumProfile' ) );
     
    508506function getTealiumTagCode() {
    509507    global $tealiumtag;
    510     if (DISALLOW_FILE_EDIT !== true) {
    511         $tealiumAdvanced = get_option( 'tealiumTagCode' );
    512     }
     508    $tealiumAdvanced = get_option( 'tealiumTagCode' );
    513509    $tealiumAccount = sanitize_text_field( get_option( 'tealiumAccount' ) );
    514510    $tealiumProfile = sanitize_text_field( get_option( 'tealiumProfile' ) );
Note: See TracChangeset for help on using the changeset viewer.