Changeset 1581889
- Timestamp:
- 01/25/2017 01:20:59 PM (9 years ago)
- Location:
- plista/trunk
- Files:
-
- 2 edited
-
plista_integration.php (modified) (5 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plista/trunk/plista_integration.php
r1578030 r1581889 4 4 Plugin URI: http://www.plista.com 5 5 Description: Plugin for displaying plista RecommendationAds 6 Version: 1.5. 46 Version: 1.5.5 7 7 Author: wordpress@plista.com 8 8 Author URI: http://www.plista.com … … 11 11 class plista { 12 12 13 const VERSION = '1.5. 4';13 const VERSION = '1.5.5'; 14 14 15 15 /** … … 89 89 public static function plista_admin_actions() { 90 90 if( current_user_can('level_10')) { 91 wp_enqueue_script( 'plista-admin', plugins_url('/js/plista-admin.js', __FILE__), array(), '1.5. 4' );92 wp_enqueue_style( 'plista-admin', plugins_url('/css/plista-admin.css', __FILE__), array(), '1.5. 4' );91 wp_enqueue_script( 'plista-admin', plugins_url('/js/plista-admin.js', __FILE__), array(), '1.5.5' ); 92 wp_enqueue_style( 'plista-admin', plugins_url('/css/plista-admin.css', __FILE__), array(), '1.5.5' ); 93 93 add_options_page('plista', 'plista', 1, 'plista', array(__CLASS__, 'plista_admin')); 94 94 } … … 432 432 $imagesize = 'medium'; 433 433 } 434 434 435 $imgsrc = null; 435 436 // first try to get the article thumbnail image 436 437 if ( function_exists('has_post_thumbnail') && has_post_thumbnail($id) ) { … … 508 509 509 510 if ($shorttag != 'checked="checked"') { 510 return ;511 return ''; 511 512 } 512 513 -
plista/trunk/readme.txt
r1578030 r1581889 5 5 Text Domain: plista 6 6 Requires at least: 3.0.0 7 Tested up to: 4. 4.18 Stable tag: 1.5. 47 Tested up to: 4.7.1 8 Stable tag: 1.5.5 9 9 10 10 The plista Widget adds plista RecommendationAds to your Wordpress blog posts. … … 65 65 == Upgrade Notice == 66 66 67 Please upgrade to Version 1.5. 467 Please upgrade to Version 1.5.5 68 68 69 69 == Screenshots == … … 145 145 1.5.4 @ 19-01-2017 146 146 * Make all plista plugin functions static 147 148 1.5.5 @ 25-01-2017 149 * Fix undefined variable imgsrc
Note: See TracChangeset
for help on using the changeset viewer.