Changeset 2415540
- Timestamp:
- 11/10/2020 03:05:01 AM (5 years ago)
- Location:
- wp-pleasewait/trunk
- Files:
-
- 2 edited
-
pleasewait-settings.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-pleasewait/trunk/pleasewait-settings.php
r2395994 r2415540 557 557 if (isset($input['spinner_style'])) { 558 558 $value = sanitize_text_field($input['spinner_style']); 559 if ( isset(self::SPINNER_STYLES[$value])) {559 if (array_key_exists($value, self::SPINNER_STYLES)) { 560 560 $new_input['spinner_style'] = $value; 561 561 } … … 622 622 } 623 623 ); 624 if ( $new_input['display_scopes'][self::SCOPE_INCLUDES_ID]) {624 if (array_key_exists(self::SCOPE_INCLUDES_ID, $new_input['display_scopes'])) { 625 625 if (empty($new_input['display_scopes'][self::SCOPE_INCLUDES_ID_VALUE])) { 626 626 unset($new_input['display_scopes'][self::SCOPE_INCLUDES_ID]); -
wp-pleasewait/trunk/readme.txt
r2395983 r2415540 3 3 Donate link: https://ko-fi.com/ngoclb 4 4 Tags: pleasewait, loading, loader, spa, animation, loading screen, loading page, page effects, page loader, splash, splash screen, pwa 5 Stable tag: 2.2. 25 Stable tag: 2.2.3 6 6 Requires PHP: 5.4.33 7 7 Requires at least: 4.0 8 Tested up to: 5.5. 18 Tested up to: 5.5.3 9 9 10 10 Just an awesome splash screen for your website (or PWA), support 12+ spinner styles and many customizable things - message text, spinner size, background, text color... … … 55 55 == Changelog == 56 56 57 **2.2.3** 58 - Fix some issues when running with old PHP version. You could skip this version if v2.2.2 working correctly on your server. 59 57 60 **2.2.2** 58 61 - Enable/Disable loading screen by add "Display Scopes" option
Note: See TracChangeset
for help on using the changeset viewer.