Changeset 2156222
- Timestamp:
- 09/13/2019 04:07:25 PM (7 years ago)
- Location:
- wp-soundsystem/trunk
- Files:
-
- 3 edited
-
classes/wpsstm-post-tracklist-class.php (modified) (1 diff)
-
classes/wpsstm-track-class.php (modified) (3 diffs)
-
wp-soundsystem.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-soundsystem/trunk/classes/wpsstm-post-tracklist-class.php
r2156200 r2156222 832 832 $link = new WPSSTM_Track_Link(); 833 833 $link->permalink_url = $url; 834 $link->is_bot = true; 834 835 $addlinks[] = $link; 835 836 } -
wp-soundsystem/trunk/classes/wpsstm-track-class.php
r2155623 r2156222 9 9 public $album; 10 10 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 requested11 public $musicbrainz_id = null; 12 12 public $spotify_id = null; 13 13 … … 16 16 17 17 var $link; 18 public $links = null; //set 'null' so we can check later (by setting it to false) it has been populated18 public $links = array(); 19 19 var $current_link = -1; 20 20 var $link_count = 0; … … 459 459 array( 460 460 'post_id'=>$this->post_id, 461 'links '=>count($new_ids),461 'links_saved'=>sprintf( '%s/%s',count($new_ids),count($this->links) ), 462 462 'track'=>json_encode($this->to_array()) 463 463 ), "Saved track details" ); -
wp-soundsystem/trunk/wp-soundsystem.php
r2156185 r2156222 6 6 Author: G.Breant 7 7 Author URI: https://profiles.wordpress.org/grosbouff/#content-plugins 8 Version: 3.1. 58 Version: 3.1.6 9 9 License: GPL2 10 10 */ … … 37 37 * @public string plugin version 38 38 */ 39 public $version = '3.1. 5';39 public $version = '3.1.6'; 40 40 /** 41 41 * @public string plugin DB version
Note: See TracChangeset
for help on using the changeset viewer.