Changeset 2736586
- Timestamp:
- 06/02/2022 06:39:32 PM (4 years ago)
- Location:
- beyondconnect/trunk
- Files:
-
- 1 deleted
- 4 edited
-
beyondConnect.php (modified) (1 diff)
-
inc/Base/ShortcodesBaseController.php (modified) (1 diff)
-
inc/Beyond.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
vendor (deleted)
Legend:
- Unmodified
- Added
- Removed
-
beyondconnect/trunk/beyondConnect.php
r2731084 r2736586 7 7 Plugin URI: https://support.beyond-sw.com/hc/de/categories/360002442180 8 8 Description: beyondConnect connects WordPress with the beyond software services. 9 Version: 2.2.1 19 Version: 2.2.12 10 10 Author: Felix Stadelmann, beyond software 11 11 Author URI: https://beyond-sw.com -
beyondconnect/trunk/inc/Base/ShortcodesBaseController.php
r2619484 r2736586 356 356 357 357 foreach ($bc_global['bc_' . $elementname . '_list_element_array'] as $element_attr_array) { 358 $headtitle = $element_attr_array['title'];358 $headtitle = empty($element_attr_array['title']) ? '' : $element_attr_array['title']; 359 359 $headcustomclass = empty($element_attr_array['customclass']) ? '' : $element_attr_array['customclass']; 360 360 -
beyondconnect/trunk/inc/Beyond.php
r2619484 r2736586 352 352 } 353 353 354 public function strpos_arr($haystack, $needle)354 public static function strpos_arr($haystack, $needle): false|int 355 355 { 356 356 if (!is_array($needle)) $needle = array($needle); 357 foreach ($needle as $what) { 358 if (($pos = strpos($haystack, $what)) !== false) return $pos; 359 } 357 { 358 foreach ( $needle as $what ) { 359 if ( ( $pos = strpos( $haystack, $what ) ) !== false ) { 360 return $pos; 361 } 362 } 363 } 360 364 return false; 361 365 } -
beyondconnect/trunk/readme.txt
r2731084 r2736586 6 6 Tested up to: 6.0 7 7 Requires PHP: 8.0 8 Stable tag: 2.2.1 18 Stable tag: 2.2.12 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 28 28 29 29 == Changelog == 30 = 2.2.12 = 31 * Bug fixes 30 32 = 2.2.11 = 31 33 * Set compatibility to WordPress 6.0
Note: See TracChangeset
for help on using the changeset viewer.