Plugin Directory

Changeset 3244498


Ignore:
Timestamp:
02/21/2025 01:21:03 PM (13 months ago)
Author:
wpvncom
Message:

Update 8.6.1

Location:
wp-extra/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-extra/trunk/readme.txt

    r3243284 r3244498  
    55Requires at least: 6.2
    66Tested up to: 6.7.2
    7 Stable tag: 8.6.0
     7Stable tag: 8.6.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5252== Changelog ==
    5353
     54= 8.6.1 =
     55* [FIX] Settings
     56
    5457= 8.6.0 =
    5558* [NEW] Turbo
  • wp-extra/trunk/src/WPSettings/Module.php

    r3243284 r3244498  
    5151    }
    5252   
    53     public function handle_redirect()
    54     {
    55         if (isset($_POST['submit'])) {
    56             $slug = str_replace('_', '-', $this->section->tab->settings->option_name);
    57             wp_safe_redirect(admin_url('admin.php?page=' . $slug));
    58             exit;
    59         }
    60     }
    61    
    6253    public function render()
    6354    {
    64         $this->handle_redirect();
    6555        ?>
    6656        <tr valign="top" class="<?php echo $this->get_hide_class_attribute(); ?>">
  • wp-extra/trunk/wp-extra.php

    r3243284 r3244498  
    44 * Plugin URI:          https://wordpress.org/plugins/wp-extra/
    55 * Description:         ❤ This is a simple and perfect tool to use as your website’s functionality plugin. Awesome !!!
    6  * Version:             8.6.0
     6 * Version:             8.6.1
    77 * Requires at least:   6.2
    88 * Requires PHP:        7.4
     
    1818    exit;
    1919}
    20 
    21 define( 'WPEX_VERSION', '8.6.0' );
     20define( 'WPEX_VERSION', '8.6.1' );
    2221define( 'WPEX_FILE', __FILE__ );
    2322define( 'WPEX_DIR', __DIR__ );
    24 
    2523if (! class_exists('\WPVNTeam\WPSettings\WPSettings')) {
    2624    include_once __DIR__ . '/wp-settings/wp-settings.php';
  • wp-extra/trunk/wp-settings/vendor/wordpressvn/wp-settings/resources/views/options/wp-editor.php

    r3243284 r3244498  
    1010    <td>
    1111        <?php
    12         \wp_editor(html_entity_decode( $option->get_value_attribute(), ENT_QUOTES, 'UTF-8' ), $option->get_id_attribute(), [
     12        \wp_editor(html_entity_decode($option->get_value_attribute() ?? '', ENT_QUOTES, 'UTF-8'), $option->get_id_attribute(), [
    1313            'textarea_name' => $option->get_name_attribute(),
    1414            'wpautop' => $option->get_arg('wpautop', true),
Note: See TracChangeset for help on using the changeset viewer.