Plugin Directory

Changeset 2860099


Ignore:
Timestamp:
02/04/2023 12:32:24 PM (3 years ago)
Author:
wordable
Message:

8.2.3

Location:
wordable
Files:
1 added
3 edited
20 copied

Legend:

Unmodified
Added
Removed
  • wordable/tags/8.2.3/includes/wordable_plugin.php

    r2817083 r2860099  
    6464    $current_cache = $this->get_wordable_database_cache();
    6565
    66     if($current_cache == NULL) $current_cache = array();
    67 
    68     $current_cache['connection_check'] = $connection_check;
     66    if($current_cache == NULL) $current_cache = new stdClass();
     67
     68    $current_cache->connection_check = $connection_check;
    6969
    7070    $this->update_wordable_row(
  • wordable/tags/8.2.3/readme.txt

    r2845107 r2860099  
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
    10 Stable Tag: 8.2.2
     10Stable Tag: 8.2.3
    1111
    1212This plugin allows you to instantly export Google Docs to WordPress posts or pages.
     
    136136== Changelog ==
    137137
    138 = 8.2.2 =
    139 * Double checking exported posts
    140 
    141138= 8.1.3 =
    142139* UI Fixes
  • wordable/tags/8.2.3/wordable.php

    r2845107 r2860099  
    44 * Plugin URI: http://wordable.io
    55 * Description: This plugin allows you to instantly export Google Docs to WordPress posts or pages.
    6  * Version: 8.2.2
     6 * Version: 8.2.3
    77 * Author: Wordable
    88 * Author URI: https://wordable.io
    99 * Tested up to: 5.9.2
    1010 * Requires at least: 5.0
    11  * Stable tag: 8.2.2
     11 * Stable tag: 8.2.3
    1212 *
    1313 * Wordpress 5.0+
    1414 */
    1515
    16 define('WORDABLE_VERSION', '8.2.2');
     16define('WORDABLE_VERSION', '8.2.3');
    1717
    1818include 'includes/wordable_exception.php';
  • wordable/trunk/includes/wordable_plugin.php

    r2817083 r2860099  
    6464    $current_cache = $this->get_wordable_database_cache();
    6565
    66     if($current_cache == NULL) $current_cache = array();
    67 
    68     $current_cache['connection_check'] = $connection_check;
     66    if($current_cache == NULL) $current_cache = new stdClass();
     67
     68    $current_cache->connection_check = $connection_check;
    6969
    7070    $this->update_wordable_row(
  • wordable/trunk/readme.txt

    r2845107 r2860099  
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
    10 Stable Tag: 8.2.2
     10Stable Tag: 8.2.3
    1111
    1212This plugin allows you to instantly export Google Docs to WordPress posts or pages.
     
    136136== Changelog ==
    137137
    138 = 8.2.2 =
    139 * Double checking exported posts
    140 
    141138= 8.1.3 =
    142139* UI Fixes
  • wordable/trunk/wordable.php

    r2845107 r2860099  
    44 * Plugin URI: http://wordable.io
    55 * Description: This plugin allows you to instantly export Google Docs to WordPress posts or pages.
    6  * Version: 8.2.2
     6 * Version: 8.2.3
    77 * Author: Wordable
    88 * Author URI: https://wordable.io
    99 * Tested up to: 5.9.2
    1010 * Requires at least: 5.0
    11  * Stable tag: 8.2.2
     11 * Stable tag: 8.2.3
    1212 *
    1313 * Wordpress 5.0+
    1414 */
    1515
    16 define('WORDABLE_VERSION', '8.2.2');
     16define('WORDABLE_VERSION', '8.2.3');
    1717
    1818include 'includes/wordable_exception.php';
Note: See TracChangeset for help on using the changeset viewer.