Changeset 2153206
- Timestamp:
- 09/09/2019 12:05:08 AM (7 years ago)
- Location:
- lcmd-tracking-codes/trunk
- Files:
-
- 4 edited
-
README.md (modified) (2 diffs)
-
README.txt (modified) (2 diffs)
-
includes/functions.php (modified) (3 diffs)
-
lcmd-tracking-codes.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lcmd-tracking-codes/trunk/README.md
r2153198 r2153206 5 5 * Tested up to: 5.2.2 6 6 * Requires PHP: 7.0 7 * Stable tag: 1.1. 67 * Stable tag: 1.1.7 8 8 * License: AGPL-3.0 9 9 * License URI: https://www.gnu.org/licenses/agpl-3.0.en.html … … 67 67 * 1.1.4 - Fix plugin publish. 68 68 * 1.1.6 - Fix Google Search Console validation. 69 * 1.1.7 - Fix Bing validation. 69 70 70 71 ## Upgrade Notice ## -
lcmd-tracking-codes/trunk/README.txt
r2153198 r2153206 5 5 Tested up to: 5.2.2 6 6 Requires PHP: 7.0 7 Stable tag: 1.1. 67 Stable tag: 1.1.7 8 8 License: AGPL-3.0 9 9 License URI: https://www.gnu.org/licenses/agpl-3.0.en.html … … 65 65 1.1.4 - Fix plugin publish. 66 66 1.1.6 - Fix Google Search Console validation. 67 1.1.7 - Fix Bing validation. 67 68 68 69 == Upgrade Notice == -
lcmd-tracking-codes/trunk/includes/functions.php
r2153198 r2153206 33 33 return true; 34 34 } 35 if ( preg_match('/^[\w_] {5,60}$/i', $gv_code) ) {35 if ( preg_match('/^[\w_]$/i', $gv_code) ) { 36 36 return true; 37 37 } else { … … 45 45 return true; 46 46 } 47 if ( preg_match('/^GTM-\w{1, 9}$/i', $gtm_id) ) {47 if ( preg_match('/^GTM-\w{1,10}$/i', $gtm_id) ) { 48 48 return true; 49 49 } else { … … 57 57 return true; 58 58 } 59 if ( preg_match('/^\w {5,30}$/i', $ms_bc) ) {59 if ( preg_match('/^\w$/i', $ms_bc) ) { 60 60 return true; 61 61 } else { -
lcmd-tracking-codes/trunk/lcmd-tracking-codes.php
r2153204 r2153206 3 3 * Plugin Name: LC Tracking Codes 4 4 * Description: LC Tracking Codes make easier put tracking codes in your site. 5 * Version: 1.1. 65 * Version: 1.1.7 6 6 * Author: Luciano Closs 7 7 * Author URI: https://lucianocloss.com
Note: See TracChangeset
for help on using the changeset viewer.