Changeset 3320962
- Timestamp:
- 07/02/2025 06:21:12 AM (9 months ago)
- Location:
- tealium/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
tealium.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tealium/trunk/readme.txt
r3320756 r3320962 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.8.1 7 Stable tag: 2.1.1 87 Stable tag: 2.1.19 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.19 = 115 * PHP 8 bugfix 116 114 117 = 2.1.18 = 115 118 * Added input sanitization to tag config fields provided through the admin console. … … 217 220 == Upgrade Notice == 218 221 222 = 2.1.19 = 223 PHP8 Bugfix 224 219 225 = 2.1.18 = 220 226 Added input sanitization to tag config fields provided through the admin console. -
tealium/trunk/tealium.php
r3320426 r3320962 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.1 86 Version: 2.1.19 7 7 Author: Ian Hampton 8 8 Author URI: http://tealium.com … … 98 98 global $pagenow; 99 99 $currentScreen = get_current_screen(); 100 if (DISALLOW_FILE_EDIT !== true) { 101 $tealiumTagCode = get_option( 'tealiumTagCode' ); 102 } 100 $tealiumTagCode = get_option( 'tealiumTagCode' ); 103 101 $tealiumAccount = sanitize_text_field( get_option( 'tealiumAccount' ) ); 104 102 $tealiumProfile = sanitize_text_field( get_option( 'tealiumProfile' ) ); … … 508 506 function getTealiumTagCode() { 509 507 global $tealiumtag; 510 if (DISALLOW_FILE_EDIT !== true) { 511 $tealiumAdvanced = get_option( 'tealiumTagCode' ); 512 } 508 $tealiumAdvanced = get_option( 'tealiumTagCode' ); 513 509 $tealiumAccount = sanitize_text_field( get_option( 'tealiumAccount' ) ); 514 510 $tealiumProfile = sanitize_text_field( get_option( 'tealiumProfile' ) );
Note: See TracChangeset
for help on using the changeset viewer.