Changeset 1976706
- Timestamp:
- 11/19/2018 10:14:47 AM (7 years ago)
- Location:
- at-internet/trunk
- Files:
-
- 3 edited
-
atinternet-smarttag.php (modified) (2 diffs)
-
includes/lib/class-atinternet-smarttag-tracking-tree-structure.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
at-internet/trunk/atinternet-smarttag.php
r1864266 r1976706 2 2 /* 3 3 * Plugin Name: AT Internet SmartTag 4 * Version: 0.1. 44 * Version: 0.1.5 5 5 * Plugin URI: http://www.atinternet.com/ 6 6 * Description: AT Internet official extension, allowing website tracking. … … 8 8 * Author URI: http://www.atinternet.com/ 9 9 * Requires at least: 4.0 10 * Tested up to: 4.9. 510 * Tested up to: 4.9.8 11 11 * 12 12 * Text Domain: atinternet-smarttag -
at-internet/trunk/includes/lib/class-atinternet-smarttag-tracking-tree-structure.php
r1864266 r1976706 209 209 case 'custom': 210 210 $tree_structure = array(); 211 $chapter1 = get_post_meta( $ post_id, $this->prefix . 'chapter1', true );212 $chapter2 = get_post_meta( $ post_id, $this->prefix . 'chapter2', true );213 $chapter3 = get_post_meta( $ post_id, $this->prefix . 'chapter3', true );214 $name = get_post_meta ($ post_id, $this->prefix . 'name', true );211 $chapter1 = get_post_meta( $this->post_id, $this->prefix . 'chapter1', true ); 212 $chapter2 = get_post_meta( $this->post_id, $this->prefix . 'chapter2', true ); 213 $chapter3 = get_post_meta( $this->post_id, $this->prefix . 'chapter3', true ); 214 $name = get_post_meta ($this->post_id, $this->prefix . 'name', true ); 215 215 if( !empty( $chapter1 ) ) $this->chapter1 = sanitize_title( $chapter1 ); 216 216 if( !empty( $chapter2 ) ) $this->chapter2 = sanitize_title( $chapter2 ); -
at-internet/trunk/readme.txt
r1864266 r1976706 3 3 Tags: AT Internet, Analytics, Tracking, Woocommerce 4 4 Requires at least: 4.0 5 Tested up to: 4.9. 55 Tested up to: 4.9.8 6 6 Stable tag: trunk 7 7 License: GPLv2 or later … … 32 32 == Changelog == 33 33 34 = 0.1.5 = 35 * 2018-11-19 36 * Fix Custom structure 37 34 38 = 0.1.4 = 35 39 * 2018-04-25
Note: See TracChangeset
for help on using the changeset viewer.