Plugin Directory

Changeset 1976706


Ignore:
Timestamp:
11/19/2018 10:14:47 AM (7 years ago)
Author:
BenDlz
Message:

0.1.5

  • 2018-11-19
  • Fix Custom structure
Location:
at-internet/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • at-internet/trunk/atinternet-smarttag.php

    r1864266 r1976706  
    22/*
    33 * Plugin Name: AT Internet SmartTag
    4  * Version: 0.1.4
     4 * Version: 0.1.5
    55 * Plugin URI: http://www.atinternet.com/
    66 * Description: AT Internet official extension, allowing website tracking.
     
    88 * Author URI: http://www.atinternet.com/
    99 * Requires at least: 4.0
    10  * Tested up to: 4.9.5
     10 * Tested up to: 4.9.8
    1111 *
    1212 * Text Domain: atinternet-smarttag
  • at-internet/trunk/includes/lib/class-atinternet-smarttag-tracking-tree-structure.php

    r1864266 r1976706  
    209209            case 'custom':
    210210                $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 );
    215215                if( !empty( $chapter1 ) ) $this->chapter1 = sanitize_title( $chapter1 );
    216216                if( !empty( $chapter2 ) ) $this->chapter2 = sanitize_title( $chapter2 );
  • at-internet/trunk/readme.txt

    r1864266 r1976706  
    33Tags: AT Internet, Analytics, Tracking, Woocommerce
    44Requires at least: 4.0
    5 Tested up to: 4.9.5
     5Tested up to: 4.9.8
    66Stable tag: trunk
    77License: GPLv2 or later
     
    3232== Changelog ==
    3333
     34= 0.1.5 =
     35* 2018-11-19
     36* Fix Custom structure
     37
    3438= 0.1.4 =
    3539* 2018-04-25
Note: See TracChangeset for help on using the changeset viewer.