Plugin Directory

Changeset 3448947


Ignore:
Timestamp:
01/28/2026 06:34:13 PM (2 months ago)
Author:
pross
Message:

Trunk 1.5.3.2

Location:
assistant/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • assistant/trunk/backend/src/Hooks/Actions/OnPersonalOptionsUpdate.php

    r3293540 r3448947  
    2424        $updates = [];
    2525        if ( isset( $saved['window'] ) ) {
    26             $window                     = $saved['window'];
    27             $window['hiddenAppearance'] = $_POST['fl_asst_hidden_ui'];
    28             $show_in_admin = isset( $_POST['show_assistant_in_admin'] ) ? $_POST['show_assistant_in_admin'] : false;
     26            $window = $saved['window'];
     27            if ( isset( $_POST['fl_asst_hidden_ui'] ) ) {
     28                $window['hiddenAppearance'] = $_POST['fl_asst_hidden_ui'];
     29            }
     30            $show_in_admin = isset( $_POST['show_assistant_in_admin'] ) ? (bool) $_POST['show_assistant_in_admin'] : false;
    2931            $updates = [
    30                 'shouldShowInAdmin' => boolval( $show_in_admin ),
     32                'shouldShowInAdmin' => $show_in_admin,
    3133                'window'            => $window,
    3234            ];
  • assistant/trunk/fl-assistant.php

    r3386634 r3448947  
    44 * Author: The Beaver Builder Team
    55 * Author URI: https://www.wpbeaverbuilder.com/?utm_medium=assistant&utm_source=plugins-admin-page&utm_campaign=plugins-admin-author
    6  * Version: 1.5.3.1
     6 * Version: 1.5.3.2
    77 * Description: A tool for navigating a site and accomplishing quick tasks without needing the WordPress admin.
    88 * License: GNU General Public License v2.0
     
    1414defined( 'ABSPATH' ) || die();
    1515
    16 define( 'FL_ASSISTANT_VERSION', '1.5.3.1' );
    17 define( 'FL_ASSISTANT_FILE', trailingslashit( __FILE__ ) );
    18 define( 'FL_ASSISTANT_DIR', plugin_dir_path( FL_ASSISTANT_FILE ) );
    19 define( 'FL_ASSISTANT_URL', plugins_url( '/', FL_ASSISTANT_FILE ) );
    20 define( 'FL_ASST_SUPPORTS_BB', true );
     16if ( ! defined( 'FL_ASSISTANT_VERSION' ) ) {
     17    define( 'FL_ASSISTANT_VERSION', '1.5.3.1' );
     18}
     19if ( ! defined( 'FL_ASSISTANT_FILE' ) ) {
     20    define( 'FL_ASSISTANT_FILE', trailingslashit( __FILE__ ) );
     21}
     22if ( ! defined( 'FL_ASSISTANT_DIR' ) ) {
     23    define( 'FL_ASSISTANT_DIR', plugin_dir_path( FL_ASSISTANT_FILE ) );
     24}
     25if ( ! defined( 'FL_ASSISTANT_URL' ) ) {
     26    define( 'FL_ASSISTANT_URL', plugins_url( '/', FL_ASSISTANT_FILE ) );
     27}
     28if ( ! defined( 'FL_ASST_SUPPORTS_BB' ) ) {
     29    define( 'FL_ASST_SUPPORTS_BB', true );
     30}
    2131
    2232require_once( __DIR__ . '/backend/autoloader.php' );
  • assistant/trunk/readme.txt

    r3406971 r3448947  
    55Tested up to: 6.9
    66Requires PHP: 5.6
    7 Stable tag: 1.5.3.1
     7Stable tag: 1.5.3.2
    88License: GPL2+
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7878== Changelog ==
    7979
     80= 1.5.3.2 ( 2026-01-28 ) =
     81* Fixed PHP warning for undefined array key when updating profile
     82* Fixed PHP warning for constants already defined
     83
    8084= 1.5.3.1 ( 2025-10-29 ) =
    81 * Fixed implicitly nullable parameter declaration deprecated notice in PHP 8.4 
     85* Fixed implicitly nullable parameter declaration deprecated notice in PHP 8.4
    8286* Fixed redirection to libraries after connecting to Assistant Pro
    8387
Note: See TracChangeset for help on using the changeset viewer.