Plugin Directory

Changeset 3271715


Ignore:
Timestamp:
04/13/2025 08:03:04 AM (12 months ago)
Author:
averta
Message:

Committing 2.17.6 to trunk

Location:
auxin-elements/trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • auxin-elements/trunk/README.txt

    r3251498 r3271715  
    88Requires at least: 5.0
    99Tested up to: 6.7.2
    10 Stable tag: 2.17.5
     10Stable tag: 2.17.6
    1111License: GPLv3
    1212License URI: http://www.gnu.org/licenses/gpl.html
     
    155155== Changelog ==
    156156
     157= Version 2.17.6 / (13.04.2025) =
     158- [Improvement]: Security improvements applied.
     159
    157160= Version 2.17.0 / (07.02.2025) =
    158161- [Improvement]: Minor security improvements applied.
  • auxin-elements/trunk/admin/assets/js/plugins.js

    r3251498 r3271715  
    1 /*! Phlox Core Plugin - v2.17.5 (2025-03)
     1/*! Phlox Core Plugin - v2.17.6 (2025-04)
    22 *  All required javascript plugins for admin
    33 *  http://phlox.pro/
  • auxin-elements/trunk/admin/includes/admin-ajax.php

    r3251498 r3271715  
    491491    }
    492492
    493     wp_send_json( auxin_template_importer( sanitize_text_field( $_POST['id'] ), $template_type, 'update_menu' ) );
     493    // Strict validation for ID
     494    if ( ! isset( $_POST['id'] ) || ! ctype_digit( $_POST['id'] ) ) {
     495        wp_send_json_error([
     496            'message' => __('Invalid template ID.', 'auxin-elements')
     497        ]);
     498    }
     499
     500    $template_id = absint($_POST['id']);
     501
     502    wp_send_json( auxin_template_importer( $template_id, $template_type, 'update_menu' ) );
    494503}
    495504add_action( 'wp_ajax_auxin_template_control_importer', 'auxin_template_control_importer' );
  • auxin-elements/trunk/auxin-elements.php

    r3251498 r3271715  
    1313 * Plugin URI:        https://wordpress.org/plugins/auxin-elements/
    1414 * Description:       Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
    15  * Version:           2.17.5
     15 * Version:           2.17.6
    1616 * Author:            By Averta
    1717 * Author URI:        http://averta.net
  • auxin-elements/trunk/includes/define.php

    r3251498 r3271715  
    1313
    1414
    15 define( 'AUXELS_VERSION'        , '2.17.5' );
     15define( 'AUXELS_VERSION'        , '2.17.6' );
    1616
    1717define( 'AUXELS_SLUG'           , 'auxin-elements' );
  • auxin-elements/trunk/languages/auxin-elements-fa_IR.po

    r3251498 r3271715  
    33"Project-Id-Version: Auxin Essential Elements\n"
    44"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
    5 "POT-Creation-Date: 2025-03-06 07:09:17+00:00\n"
     5"POT-Creation-Date: 2025-04-13 08:02:05+00:00\n"
    66"PO-Revision-Date: 2016-11-09 12:50+0330\n"
    77"Last-Translator: \n"
     
    126126#: admin/includes/admin-ajax.php:468
    127127msgid "Successfully Imported."
     128msgstr ""
     129
     130#: admin/includes/admin-ajax.php:496
     131msgid "Invalid template ID."
    128132msgstr ""
    129133
  • auxin-elements/trunk/languages/auxin-elements.pot

    r3251498 r3271715  
    22msgid ""
    33msgstr ""
    4 "Project-Id-Version: Phlox Core Elements 2.17.5\n"
     4"Project-Id-Version: Phlox Core Elements 2.17.6\n"
    55"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
    6 "POT-Creation-Date: 2025-03-06 07:09:17+00:00\n"
     6"POT-Creation-Date: 2025-04-13 08:02:05+00:00\n"
    77"MIME-Version: 1.0\n"
    88"Content-Type: text/plain; charset=utf-8\n"
     
    128128#: admin/includes/admin-ajax.php:468
    129129msgid "Successfully Imported."
     130msgstr ""
     131
     132#: admin/includes/admin-ajax.php:496
     133msgid "Invalid template ID."
    130134msgstr ""
    131135
  • auxin-elements/trunk/public/assets/js/plugins.js

    r3251498 r3271715  
    1 /*! Phlox Core Plugin - v2.17.5 (2025-03)
     1/*! Phlox Core Plugin - v2.17.6 (2025-04)
    22 *  All required plugins
    33 *  http://phlox.pro/
Note: See TracChangeset for help on using the changeset viewer.