Changeset 1728777
- Timestamp:
- 09/12/2017 03:14:33 PM (9 years ago)
- Location:
- at-internet/trunk
- Files:
-
- 3 edited
-
atinternet-smarttag.php (modified) (1 diff)
-
includes/lib/class-atinternet-smarttag-tracking-tree-structure.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
at-internet/trunk/atinternet-smarttag.php
r1631784 r1728777 2 2 /* 3 3 * Plugin Name: AT Internet SmartTag 4 * Version: 0.1. 14 * Version: 0.1.2 5 5 * Plugin URI: http://www.atinternet.com/ 6 6 * Description: AT Internet official extension, allowing website tracking. -
at-internet/trunk/includes/lib/class-atinternet-smarttag-tracking-tree-structure.php
r1631751 r1728777 209 209 case 'custom': 210 210 $tree_structure = array(); 211 if( !empty( $chapter1 = get_post_meta( $post_id, $this->prefix . 'chapter1', true ) ) ) $this->chapter1 = sanitize_title( $chapter1 ); 212 if( !empty( $chapter2 = get_post_meta( $post_id, $this->prefix . 'chapter2', true ) ) ) $this->chapter2 = sanitize_title( $chapter2 ); 213 if( !empty( $chapter3 = get_post_meta( $post_id, $this->prefix . 'chapter3', true ) ) ) $this->chapter3 = sanitize_title( $chapter3 ); 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 if( !empty( $chapter1 ) ) $this->chapter1 = sanitize_title( $chapter1 ); 215 if( !empty( $chapter2 ) ) $this->chapter2 = sanitize_title( $chapter2 ); 216 if( !empty( $chapter3 ) ) $this->chapter3 = sanitize_title( $chapter3 ); 214 217 if( !empty( $name = get_post_meta ($post_id, $this->prefix . 'name', true ) ) ) $this->name = sanitize_title( $name ); 215 218 break; -
at-internet/trunk/readme.txt
r1631784 r1728777 12 12 == Description == 13 13 14 AT Internet SmartTag allows you to automatically track your Wordpress website with [AT Internet] (http://atinternet.com "AT Internet") solution.14 AT Internet SmartTag allows you to automatically track your Wordpress website with [AT Internet](http://atinternet.com "AT Internet") solution. 15 15 16 16 == Installation == … … 19 19 20 20 1. Download the plugin via WordPress.org 21 1. Upload the ZIP file through the 'Plugins > Add New > Upload' screen in your WordPress dashboard22 1. Activate the plugin through the 'Plugins' menu in WordPress21 2. Upload the ZIP file through the 'Plugins > Add New > Upload' screen in your WordPress dashboard 22 3. Activate the plugin through the 'Plugins' menu in WordPress 23 23 24 24 == Screenshots == … … 31 31 32 32 == Changelog == 33 34 = 0.1.2 = 35 * 2017-09-12 36 * Bug fix 33 37 34 38 = 0.1.1 =
Note: See TracChangeset
for help on using the changeset viewer.