Plugin Directory

Changeset 3171365


Ignore:
Timestamp:
10/18/2024 10:44:27 AM (16 months ago)
Author:
urlslab
Message:

Upload v2.130.7

Location:
urlslab/trunk
Files:
75 added
75 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • urlslab/trunk/includes/cron/class-urlslab-cron-generator.php

    r3169741 r3171365  
    210210        if ( ! $results_data->load() ) {
    211211            // newly creating results
    212             $results_data->set_shortcode_id( $task_data['shortcode_id'] );
     212            if ( isset( $task_data['shortcode_id'] ) ) {
     213                $results_data->set_shortcode_id( $task_data['shortcode_id'] );
     214                $shortcode_id = $task_data['shortcode_id'];
     215            } elseif ( isset( $task_data['id'] ) ) {
     216                $results_data->set_shortcode_id( $task_data['id'] );
     217                $shortcode_id = $task_data['id'];
     218            }
    213219            $results_data->set_prompt_variables( $task_data['prompt_variables'] );
    214220        }
    215 
    216         $db_shortcode = new Urlslab_Data_Generator_Shortcode( array( 'shortcode_id' => $task_data['shortcode_id'] ) );
     221        if ( isset( $task_data['shortcode_id'] ) ) {
     222            $shortcode_id = $task_data['shortcode_id'];
     223        } elseif ( isset( $task_data['id'] ) ) {
     224            $shortcode_id = $task_data['id'];
     225        } else {
     226            $shortcode_id = null;
     227        }
     228
     229        $db_shortcode = new Urlslab_Data_Generator_Shortcode( array( 'shortcode_id' => $shortcode_id ) );
    217230        if (
    218231            $db_shortcode->load() &&
  • urlslab/trunk/readme.txt

    r3171336 r3171365  
    55Tested up to: 6.5
    66Requires PHP: 7.4
    7 Stable tag: 2.130.6
     7Stable tag: 2.130.7
    88License: GPLv2
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    144144== Changelog ==
    145145
    146 = 2.130.6 - 2024-10-18 =
     146= 2.130.7 - 2024-10-18 =
    147147
    148148* Experience a smoother user journey with our under-the-hood enhancements.
  • urlslab/trunk/urlslab.php

    r3171336 r3171365  
    1717 * Plugin URI:        https://github.com/QualityUnit/wp-urlslab
    1818 * Description:       URLsLab WordPress Plugin to optimize your website for search engines and enhance automatically content
    19  * Version: 2.130.6
     19 * Version: 2.130.7
    2020 * Requires at least: 6.0
    2121 * Requires PHP:      7.4
     
    3131}
    3232
    33 define( 'URLSLAB_VERSION', '2.130.6' );
     33define( 'URLSLAB_VERSION', '2.130.7' );
    3434define( 'URLSLAB_VERSION_SETTING', 'urlslab_ver' );
    3535define( 'URLSLAB_PLUGIN', __FILE__ );
  • urlslab/trunk/vendor_prefixed/composer/installed.php

    r3171336 r3171365  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => 'a4353a0124d8d1d33f6e3e7a7813fd0d7fc7d555',
     6        'reference' => 'ddf5f3dcdc29108be0f1c28acf845a220ea961bc',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../',
     
    1414            'pretty_version' => 'dev-main',
    1515            'version' => 'dev-main',
    16             'reference' => 'a4353a0124d8d1d33f6e3e7a7813fd0d7fc7d555',
     16            'reference' => 'ddf5f3dcdc29108be0f1c28acf845a220ea961bc',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../',
Note: See TracChangeset for help on using the changeset viewer.