Plugin Directory

Changeset 2156222


Ignore:
Timestamp:
09/13/2019 04:07:25 PM (7 years ago)
Author:
grosbouff
Message:

3.1.6

Location:
wp-soundsystem/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-soundsystem/trunk/classes/wpsstm-post-tracklist-class.php

    r2156200 r2156222  
    832832                    $link = new WPSSTM_Track_Link();
    833833                    $link->permalink_url = $url;
     834                    $link->is_bot = true;
    834835                    $addlinks[] = $link;
    835836                }
  • wp-soundsystem/trunk/classes/wpsstm-track-class.php

    r2155623 r2156222  
    99    public $album;
    1010    public $duration; //in milliseconds
    11     public $musicbrainz_id = null; //set 'null' so we can check later (by setting it to false) if it has been requested
     11    public $musicbrainz_id = null;
    1212    public $spotify_id = null;
    1313   
     
    1616   
    1717    var $link;
    18     public $links = null; //set 'null' so we can check later (by setting it to false) it has been populated
     18    public $links = array();
    1919    var $current_link = -1;
    2020    var $link_count = 0;
     
    459459            array(
    460460                'post_id'=>$this->post_id,
    461                 'links'=>count($new_ids),
     461                'links_saved'=>sprintf( '%s/%s',count($new_ids),count($this->links) ),
    462462                'track'=>json_encode($this->to_array())
    463463            ), "Saved track details" );
  • wp-soundsystem/trunk/wp-soundsystem.php

    r2156185 r2156222  
    66Author: G.Breant
    77Author URI: https://profiles.wordpress.org/grosbouff/#content-plugins
    8 Version: 3.1.5
     8Version: 3.1.6
    99License: GPL2
    1010*/
     
    3737    * @public string plugin version
    3838    */
    39     public $version = '3.1.5';
     39    public $version = '3.1.6';
    4040    /**
    4141    * @public string plugin DB version
Note: See TracChangeset for help on using the changeset viewer.