Plugin Directory

Changeset 2923325

Timestamp:
06/08/2023 11:00:41 AM (14 months ago)
Author:
l1nuxjedi
Message:

Update trunk

Location:
mariadb-health-checks/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • mariadb-health-checks/trunk/inc/App/GeneralData.php

    r2907902 r2923325  
    22/**
    33 * @package MariaDB_Health_Checks
    4  * @version 1.0.2
     4 * @version 1.0.
    55 */
    66
  • mariadb-health-checks/trunk/inc/App/PluginActivation.php

    r2892479 r2923325  
    1919
    2020        self::create_versions_table();
     21
    2122        self::create_execution_table();
    2223        self::create_config_table();
     
    6970
    7071        require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
    71 
    7272        dbDelta($sql);
    73 
    74         self::insert_versions_data();
    7573
    7674    }
     
    8886
    8987        $record = $wpdb->get_var("SELECT COUNT(*) from $table_name where id = 1");
    90 
    91         // print_r($record);exit;
    92 
    93         if ($record) return;
     88        if ($record) {
     89        ;
     90            $wpdb->query($sql);
     91       
    9492
    9593        $charset_collate = $wpdb->get_charset_collate();
     
    145143        $table_name = $wpdb->prefix . 'mariadb_config';
    146144
    147         $record = $wpdb->get_var("SELECT COUNT(*) from $table_name where id = 1");
     145        $record = $wpdb->get_var("SELECT COUNT(*) from $table_name");
    148146
    149147        // print_r($record);exit;
  • mariadb-health-checks/trunk/languages/mariadb-health-checks.pot

    r2907902 r2923325  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: MariaDB Health Checks 1.0.2\n"
     5"Project-Id-Version: MariaDB Health Checks 1.0.\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wordpress-mariadb-health-checks\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • mariadb-health-checks/trunk/mariadb-health-checks.php

    r2907902 r2923325  
    44 * Plugin URI: http://github.com/MariaDB/wordpress-mariadb-health-checks
    55 * Description: MariaDB Health Checks
    6  * Version: 1.0.2
     6 * Version: 1.0.
    77 * Plugin Prefixes: mdbhc, Mdbhc, MDBHC
    88 * Text Domain: mariadb-health-checks
     
    2020
    2121register_activation_hook( __FILE__, 'mdbhc_activation' );
     22
     23
    2224
    2325function wpauto_plugin_init() {
  • mariadb-health-checks/trunk/readme.txt

    r2907902 r2923325  
    55Tested up to: 6.2
    66Requires PHP: 7.2
    7 Stable tag: 1.0.2
     7Stable tag: 1.0.
    88License: GPLv2
    99
     
    4040== Changelog ==
    4141
     42
     43
     44
     45
     46
     47
    4248= 1.0.2 =
    4349
Note: See TracChangeset for help on using the changeset viewer.