Changeset 3111820
- Timestamp:
- 07/03/2024 02:54:50 PM (21 months ago)
- Location:
- infusionsoft-official-opt-in-forms/trunk
- Files:
-
- 4 edited
-
changelog.txt (modified) (1 diff)
-
dashboard/dashboard.php (modified) (1 diff)
-
infusionsoft.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
infusionsoft-official-opt-in-forms/trunk/changelog.txt
r3108947 r3111820 1 version 1.1.3 2 - Fix related to support for Wordpress MultiSite capabilities. 3 1 4 version 1.1.2 2 5 - Updated to support Wordpress MultiSite capabilities. -
infusionsoft-official-opt-in-forms/trunk/dashboard/dashboard.php
r3108944 r3111820 285 285 */ 286 286 function dashboard_save_settings( $options = array() ) { 287 if ( (defined( 'DISALLOW_UNFILTERED_HTML' ) && DISALLOW_UNFILTERED_HTML ) || !current_user_can('unfiltered_html')) { 287 $data = get_userdata( get_current_user_id() ); 288 $current_user_caps=array(); 289 if ( is_object( $data) ) { 290 $current_user_caps = $data->allcaps; 291 } 292 293 294 if ( (defined( 'DISALLOW_UNFILTERED_HTML' ) && DISALLOW_UNFILTERED_HTML ) || !$current_user_caps['unfiltered_html']) { 288 295 $error_message='unauthorized.'; 289 296 die( $error_message ); -
infusionsoft-official-opt-in-forms/trunk/infusionsoft.php
r3108947 r3111820 3 3 * Plugin Name: Keap Official Opt-in Forms 4 4 * Plugin URI: https://www.keap.com 5 * Version: 1.1. 25 * Version: 1.1.3 6 6 * Description: Keap Official Opt-in Forms 7 7 * Author: Keap -
infusionsoft-official-opt-in-forms/trunk/readme.txt
r3108947 r3111820 5 5 Tested up to: 6.5.5 6 6 Requires PHP: 8.0 7 Stable tag: 1.1. 27 Stable tag: 1.1.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 82 82 == Changelog == 83 83 84 = 1.1.3 = 85 * Fix related to support for Wordpress MultiSite capabilities. 86 84 87 = 1.1.2 = 85 88 * Updated to support Wordpress MultiSite capabilities. … … 135 138 == Upgrade Notice == 136 139 140 = 1.1.3 = 141 Fix related to support for Wordpress MultiSite capabilities. 142 137 143 = 1.1.2 = 138 144 Updated to support Wordpress MultiSite capabilities.
Note: See TracChangeset
for help on using the changeset viewer.