Changeset 3448947
- Timestamp:
- 01/28/2026 06:34:13 PM (2 months ago)
- Location:
- assistant/trunk
- Files:
-
- 3 edited
-
backend/src/Hooks/Actions/OnPersonalOptionsUpdate.php (modified) (1 diff)
-
fl-assistant.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
assistant/trunk/backend/src/Hooks/Actions/OnPersonalOptionsUpdate.php
r3293540 r3448947 24 24 $updates = []; 25 25 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; 29 31 $updates = [ 30 'shouldShowInAdmin' => boolval( $show_in_admin ),32 'shouldShowInAdmin' => $show_in_admin, 31 33 'window' => $window, 32 34 ]; -
assistant/trunk/fl-assistant.php
r3386634 r3448947 4 4 * Author: The Beaver Builder Team 5 5 * Author URI: https://www.wpbeaverbuilder.com/?utm_medium=assistant&utm_source=plugins-admin-page&utm_campaign=plugins-admin-author 6 * Version: 1.5.3. 16 * Version: 1.5.3.2 7 7 * Description: A tool for navigating a site and accomplishing quick tasks without needing the WordPress admin. 8 8 * License: GNU General Public License v2.0 … … 14 14 defined( 'ABSPATH' ) || die(); 15 15 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 ); 16 if ( ! defined( 'FL_ASSISTANT_VERSION' ) ) { 17 define( 'FL_ASSISTANT_VERSION', '1.5.3.1' ); 18 } 19 if ( ! defined( 'FL_ASSISTANT_FILE' ) ) { 20 define( 'FL_ASSISTANT_FILE', trailingslashit( __FILE__ ) ); 21 } 22 if ( ! defined( 'FL_ASSISTANT_DIR' ) ) { 23 define( 'FL_ASSISTANT_DIR', plugin_dir_path( FL_ASSISTANT_FILE ) ); 24 } 25 if ( ! defined( 'FL_ASSISTANT_URL' ) ) { 26 define( 'FL_ASSISTANT_URL', plugins_url( '/', FL_ASSISTANT_FILE ) ); 27 } 28 if ( ! defined( 'FL_ASST_SUPPORTS_BB' ) ) { 29 define( 'FL_ASST_SUPPORTS_BB', true ); 30 } 21 31 22 32 require_once( __DIR__ . '/backend/autoloader.php' ); -
assistant/trunk/readme.txt
r3406971 r3448947 5 5 Tested up to: 6.9 6 6 Requires PHP: 5.6 7 Stable tag: 1.5.3. 17 Stable tag: 1.5.3.2 8 8 License: GPL2+ 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 78 78 == Changelog == 79 79 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 80 84 = 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 82 86 * Fixed redirection to libraries after connecting to Assistant Pro 83 87
Note: See TracChangeset
for help on using the changeset viewer.