Plugin Directory

Changeset 3481703


Ignore:
Timestamp:
03/13/2026 06:54:10 AM (3 weeks ago)
Author:
Wpcalc
Message:

Update Button Generator to version 3.2.6

Location:
button-generation
Files:
185 added
4 edited

Legend:

Unmodified
Added
Removed
  • button-generation/trunk/Readme.txt

    r3408120 r3481703  
    66Tested up to: 6.9
    77Requires PHP: 7.4
    8 Stable tag: 3.2.5
     8Stable tag: 3.2.6
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    131131
    132132== Changelog ==
     133= 3.2.6 =
     134* Fixed: grammar error in ListTable
     135* Fixed: wrong variable type in ListTable
     136* Changed: method for output of buttons styles
     137
    133138= 3.2.5 =
    134139* Updated: FontAwesome icons to version 7.1.
  • button-generation/trunk/button-generation.php

    r3388087 r3481703  
    44 *  Plugin URI:        https://wordpress.org/plugins/button-generation/
    55 *  Description:       Easy generation of custom buttons.
    6  *  Version:           3.2.5
     6 *  Version:           3.2.6
    77 *  Author:            Wow-Company
    88 *  Author URI:        https://wow-estore.com/
  • button-generation/trunk/classes/Admin/ListTable.php

    r3266079 r3481703  
    238238
    239239
    240         $result = '';
     240        $result = [];
    241241
    242242        $table = esc_sql($wpdb->prefix . WOWP_Plugin::PREFIX);
     
    290290    public function get_bulk_actions(): array {
    291291        $actions = [
    292             'delete'     => __( 'Delate', 'button-generation' ),
     292            'delete'     => __( 'Delete', 'button-generation' ),
    293293            'activate'   => __( 'Activate', 'button-generation' ),
    294294            'deactivate' => __( 'Deactivate', 'button-generation' ),
  • button-generation/trunk/public/class-wowp-public.php

    r3388087 r3481703  
    215215
    216216        if ( ! empty( $css_out ) ) {
    217             echo '<style>' . esc_html( $css_out ) . '</style>';
     217            wp_add_inline_style( $handle, $css_out );
    218218        }
    219219
Note: See TracChangeset for help on using the changeset viewer.