Plugin Directory

Changeset 3061989


Ignore:
Timestamp:
04/01/2024 09:33:42 AM (2 years ago)
Author:
codeflavors
Message:

Version 3.1.9

Location:
featured-articles-lite/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • featured-articles-lite/trunk/includes/admin/libs/class-fa-admin.php

    r1552541 r3061989  
    234234       
    235235        $tax_modal = add_submenu_page(
    236             null,
     236            'no-parent-featured-articles-lite-3',
    237237            '',
    238238            '',
     
    242242       
    243243        $mixed_modal = add_submenu_page(
    244             null,
     244            'no-parent-featured-articles-lite-3',
    245245            '',
    246246            '',
     
    251251           
    252252        $mixed_slide_edit = add_submenu_page(
    253             null,
     253            'no-parent-featured-articles-lite-3',
    254254            '',
    255255            '',
  • featured-articles-lite/trunk/includes/functions.php

    r1412951 r3061989  
    626626                if( $current_post ){
    627627                    $image = fa_detect_image( $current_post->post_content );
    628                     if( !$image['id'] && $image['img'] ){
     628                    if( $image && !$image['id'] && $image['img'] ){
    629629                        $image_url = $image['img'];
    630630                        fa_update_slide_options( $post_id, array( 'temp_image_url' => $image_url ) );
  • featured-articles-lite/trunk/includes/libs/class-fa-options.php

    r1412951 r3061989  
    66 */
    77class FA_Slider_Options extends FA_Options{
    8    
     8
     9    /**
     10     * @var array
     11     */
     12    private $defaults;
     13
    914    /**
    1015     *  Store variables added by deprecated themes.
  • featured-articles-lite/trunk/includes/libs/class-fa-slider.php

    r1525168 r3061989  
    1313     */
    1414    private $slides = false;
    15    
    16     /**
     15    /**
     16     * @var float
     17     */
     18    private $timer_start;
     19
     20    /**
    1721     * Constructor. Takes as argument the slider ID
    1822     * @param int $slider_id
  • featured-articles-lite/trunk/index.php

    r2972887 r3061989  
    55Description: Create beautiful sliders in WordPress from any already existing posts or pages. Now at version 3.
    66Author: CodeFlavors
    7 Version: 3.1.8
     7Version: 3.1.9
    88Author URI: http://www.codeflavors.com
    99Text Domain: featured-articles-lite
     
    2929
    3030// store plugin version
    31 define('FA_VERSION', '3.1.8');
     31define('FA_VERSION', '3.1.9');
    3232// plugin path
    3333define('FA_PATH', plugin_dir_path(__FILE__));
  • featured-articles-lite/trunk/readme.txt

    r2972887 r3061989  
    22Contributors: codeflavors, constantin.boiangiu
    33Tags:  wordpress slider plugin, responsive slider, wordpress slider, custom post slider
    4 Requires at least: 5.0
    5 Tested up to: 6.3.1
     4Requires at least: 5.5
     5Tested up to: 6.5
     6Requires PHP: 7.4
    67Stable tag: trunk
    78
     
    9596
    9697== Changelog ==
     98= 3.1.9 =
     99* Solved deprecation notices in PHP 8.3.3;
     100* Checked compatibility with WordPress 6.5.
     101
    97102= 3.1.8 =
    98 = Compatibility with WordPress 6.3.1.
     103* Compatibility with WordPress 6.3.1.
    99104
    100105= 3.1.7 =
Note: See TracChangeset for help on using the changeset viewer.