Changeset 3061989
- Timestamp:
- 04/01/2024 09:33:42 AM (2 years ago)
- Location:
- featured-articles-lite/trunk
- Files:
-
- 6 edited
-
includes/admin/libs/class-fa-admin.php (modified) (3 diffs)
-
includes/functions.php (modified) (1 diff)
-
includes/libs/class-fa-options.php (modified) (1 diff)
-
includes/libs/class-fa-slider.php (modified) (1 diff)
-
index.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
featured-articles-lite/trunk/includes/admin/libs/class-fa-admin.php
r1552541 r3061989 234 234 235 235 $tax_modal = add_submenu_page( 236 null,236 'no-parent-featured-articles-lite-3', 237 237 '', 238 238 '', … … 242 242 243 243 $mixed_modal = add_submenu_page( 244 null, 244 'no-parent-featured-articles-lite-3', 245 245 '', 246 246 '', … … 251 251 252 252 $mixed_slide_edit = add_submenu_page( 253 null,253 'no-parent-featured-articles-lite-3', 254 254 '', 255 255 '', -
featured-articles-lite/trunk/includes/functions.php
r1412951 r3061989 626 626 if( $current_post ){ 627 627 $image = fa_detect_image( $current_post->post_content ); 628 if( !$image['id'] && $image['img'] ){628 if( $image && !$image['id'] && $image['img'] ){ 629 629 $image_url = $image['img']; 630 630 fa_update_slide_options( $post_id, array( 'temp_image_url' => $image_url ) ); -
featured-articles-lite/trunk/includes/libs/class-fa-options.php
r1412951 r3061989 6 6 */ 7 7 class FA_Slider_Options extends FA_Options{ 8 8 9 /** 10 * @var array 11 */ 12 private $defaults; 13 9 14 /** 10 15 * Store variables added by deprecated themes. -
featured-articles-lite/trunk/includes/libs/class-fa-slider.php
r1525168 r3061989 13 13 */ 14 14 private $slides = false; 15 16 /** 15 /** 16 * @var float 17 */ 18 private $timer_start; 19 20 /** 17 21 * Constructor. Takes as argument the slider ID 18 22 * @param int $slider_id -
featured-articles-lite/trunk/index.php
r2972887 r3061989 5 5 Description: Create beautiful sliders in WordPress from any already existing posts or pages. Now at version 3. 6 6 Author: CodeFlavors 7 Version: 3.1. 87 Version: 3.1.9 8 8 Author URI: http://www.codeflavors.com 9 9 Text Domain: featured-articles-lite … … 29 29 30 30 // store plugin version 31 define('FA_VERSION', '3.1. 8');31 define('FA_VERSION', '3.1.9'); 32 32 // plugin path 33 33 define('FA_PATH', plugin_dir_path(__FILE__)); -
featured-articles-lite/trunk/readme.txt
r2972887 r3061989 2 2 Contributors: codeflavors, constantin.boiangiu 3 3 Tags: wordpress slider plugin, responsive slider, wordpress slider, custom post slider 4 Requires at least: 5.0 5 Tested up to: 6.3.1 4 Requires at least: 5.5 5 Tested up to: 6.5 6 Requires PHP: 7.4 6 7 Stable tag: trunk 7 8 … … 95 96 96 97 == Changelog == 98 = 3.1.9 = 99 * Solved deprecation notices in PHP 8.3.3; 100 * Checked compatibility with WordPress 6.5. 101 97 102 = 3.1.8 = 98 =Compatibility with WordPress 6.3.1.103 * Compatibility with WordPress 6.3.1. 99 104 100 105 = 3.1.7 =
Note: See TracChangeset
for help on using the changeset viewer.