Changeset 3323316
- Timestamp:
- 07/07/2025 08:24:21 AM (9 months ago)
- Location:
- tealium/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (3 diffs)
-
tealium.options.php (modified) (3 diffs)
-
tealium.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tealium/trunk/readme.txt
r3321077 r3323316 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.8.1 7 Stable tag: 2.1.2 07 Stable tag: 2.1.21 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 112 112 == Changelog == 113 113 114 = 2.1.21 = 115 * Alter sanitization method following feedback from Patchstack 116 114 117 = 2.1.20 = 115 118 * Alter sanitization method following feedback from Patchstack … … 223 226 == Upgrade Notice == 224 227 228 = 2.1.21 = 229 Alter sanitization method following feedback from Patchstack 230 225 231 = 2.1.20 = 226 232 Alter sanitization method following feedback from Patchstack -
tealium/trunk/tealium.options.php
r3320426 r3323316 115 115 <th scope="row"><label for="tealiumAccount"><?php _e( 'Account', 'tealium' ); ?></label></th> 116 116 <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' /> 118 118 <p class="description"><?php _e( 'For example: <code>companyname</code>', 'tealium' ); ?></p> 119 119 </td> … … 122 122 <th scope="row"><label for="tealiumProfile"><?php _e( 'Profile', 'tealium' ); ?></label></th> 123 123 <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' /> 125 125 <p class="description"><?php _e( 'For example: <code>main</code>', 'tealium' ); ?></p> 126 126 </td> … … 129 129 <th scope="row"><label for="tealiumEnvironment"><?php _e( 'Environment', 'tealium' ); ?></label></th> 130 130 <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' /> 132 132 <p class="description"><?php _e( 'For example: <code>prod</code>', 'tealium' ); ?></p> 133 133 </td> -
tealium/trunk/tealium.php
r3321077 r3323316 4 4 Plugin URI: http://tealium.com 5 5 Description: Adds the Tealium tag and creates a data layer for your WordPress site. 6 Version: 2.1.2 06 Version: 2.1.21 7 7 Author: Ian Hampton 8 8 Author URI: http://tealium.com
Note: See TracChangeset
for help on using the changeset viewer.