Plugin Directory

Changeset 3323316


Ignore:
Timestamp:
07/07/2025 08:24:21 AM (9 months ago)
Author:
tealium
Message:

Commit 2.1.21

Location:
tealium/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • tealium/trunk/readme.txt

    r3321077 r3323316  
    55Requires at least: 3.0.1
    66Tested up to: 6.8.1
    7 Stable tag: 2.1.20
     7Stable tag: 2.1.21
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    112112== Changelog ==
    113113
     114= 2.1.21 =
     115* Alter sanitization method following feedback from Patchstack
     116
    114117= 2.1.20 =
    115118* Alter sanitization method following feedback from Patchstack
     
    223226== Upgrade Notice ==
    224227
     228= 2.1.21 =
     229Alter sanitization method following feedback from Patchstack
     230
    225231= 2.1.20 =
    226232Alter sanitization method following feedback from Patchstack
  • tealium/trunk/tealium.options.php

    r3320426 r3323316  
    115115                    <th scope="row"><label for="tealiumAccount"><?php _e( 'Account', 'tealium' ); ?></label></th>
    116116                    <td>
    117                         <input name='tealiumAccount' id='tealiumAccount' size='30' type='text' value='<?php echo get_option( 'tealiumAccount' ); ?>' class='regular-text' />
     117                        <input name='tealiumAccount' id='tealiumAccount' size='30' type='text' value='<?php echo esc_attr( get_option( 'tealiumAccount' ) ); ?>' class='regular-text' />
    118118                        <p class="description"><?php _e( 'For example: <code>companyname</code>', 'tealium' ); ?></p>
    119119                    </td>
     
    122122                    <th scope="row"><label for="tealiumProfile"><?php _e( 'Profile', 'tealium' ); ?></label></th>
    123123                    <td>
    124                         <input name='tealiumProfile' id='tealiumProfile' size='30' type='text' value='<?php echo get_option( 'tealiumProfile' ); ?>' class='regular-text' />
     124                        <input name='tealiumProfile' id='tealiumProfile' size='30' type='text' value='<?php echo esc_attr( get_option( 'tealiumProfile' ) ); ?>' class='regular-text' />
    125125                        <p class="description"><?php _e( 'For example: <code>main</code>', 'tealium' ); ?></p>
    126126                    </td>
     
    129129                    <th scope="row"><label for="tealiumEnvironment"><?php _e( 'Environment', 'tealium' ); ?></label></th>
    130130                    <td>
    131                         <input name='tealiumEnvironment' id='tealiumEnvironment' size='30' type='text' value='<?php echo get_option( 'tealiumEnvironment' ); ?>' class='regular-text' />
     131                        <input name='tealiumEnvironment' id='tealiumEnvironment' size='30' type='text' value='<?php echo esc_attr( get_option( 'tealiumEnvironment' ) ); ?>' class='regular-text' />
    132132                        <p class="description"><?php _e( 'For example: <code>prod</code>', 'tealium' ); ?></p>
    133133                    </td>
  • tealium/trunk/tealium.php

    r3321077 r3323316  
    44Plugin URI: http://tealium.com
    55Description: Adds the Tealium tag and creates a data layer for your WordPress site.
    6 Version: 2.1.20
     6Version: 2.1.21
    77Author: Ian Hampton
    88Author URI: http://tealium.com
Note: See TracChangeset for help on using the changeset viewer.