Changeset 3244498
- Timestamp:
- 02/21/2025 01:21:03 PM (13 months ago)
- Location:
- wp-extra/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (2 diffs)
-
src/WPSettings/Module.php (modified) (1 diff)
-
wp-extra.php (modified) (2 diffs)
-
wp-settings/vendor/wordpressvn/wp-settings/resources/views/options/wp-editor.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-extra/trunk/readme.txt
r3243284 r3244498 5 5 Requires at least: 6.2 6 6 Tested up to: 6.7.2 7 Stable tag: 8.6. 07 Stable tag: 8.6.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 52 52 == Changelog == 53 53 54 = 8.6.1 = 55 * [FIX] Settings 56 54 57 = 8.6.0 = 55 58 * [NEW] Turbo -
wp-extra/trunk/src/WPSettings/Module.php
r3243284 r3244498 51 51 } 52 52 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 62 53 public function render() 63 54 { 64 $this->handle_redirect();65 55 ?> 66 56 <tr valign="top" class="<?php echo $this->get_hide_class_attribute(); ?>"> -
wp-extra/trunk/wp-extra.php
r3243284 r3244498 4 4 * Plugin URI: https://wordpress.org/plugins/wp-extra/ 5 5 * Description: ❤ This is a simple and perfect tool to use as your website’s functionality plugin. Awesome !!! 6 * Version: 8.6. 06 * Version: 8.6.1 7 7 * Requires at least: 6.2 8 8 * Requires PHP: 7.4 … … 18 18 exit; 19 19 } 20 21 define( 'WPEX_VERSION', '8.6.0' ); 20 define( 'WPEX_VERSION', '8.6.1' ); 22 21 define( 'WPEX_FILE', __FILE__ ); 23 22 define( 'WPEX_DIR', __DIR__ ); 24 25 23 if (! class_exists('\WPVNTeam\WPSettings\WPSettings')) { 26 24 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 10 10 <td> 11 11 <?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(), [ 13 13 'textarea_name' => $option->get_name_attribute(), 14 14 'wpautop' => $option->get_arg('wpautop', true),
Note: See TracChangeset
for help on using the changeset viewer.