Changeset 2637310
- Timestamp:
- 11/30/2021 09:34:15 AM (4 years ago)
- Location:
- wp-fevents-book/trunk
- Files:
-
- 3 edited
-
init.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
wp-fevents-book.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-fevents-book/trunk/init.php
r2123793 r2637310 4 4 Plugin URI: http://wordpress.org/extend/plugins/wp-fevents-book/ 5 5 Description: Create FEvents Book. Use the shortcode <code>[feventsbook]</code> to display all enabled Events, or <code>[feventsbook eventid=x]</code> to display Event with ID=x. 6 Version: 0.4 56 Version: 0.46 7 7 Author: faina09 8 8 Author URI: http://profiles.wordpress.org/faina09 9 9 License: GPLv2 or later 10 10 */ 11 $VER = '0.4 5';11 $VER = '0.46'; 12 12 require_once('wp-fevents-book.php'); 13 13 //require_once('wp-fevents-6r.php'); -
wp-fevents-book/trunk/readme.txt
r2123793 r2637310 3 3 Contributors: faina09, Arne, Claude, Borisa, bl-solutions 4 4 Donate link: http://goo.gl/QzIZZ 5 Requires at least: 3.56 Tested up to: 5. 2.25 Requires at least: 5.2.2 6 Tested up to: 5.8.2 7 7 Stable tag: trunk 8 8 License: GPLv2 or later … … 21 21 22 22 The Administrators can delete/add/update the Users' bookings. 23 24 Try it out on your free dummy site: tastewp.com/new?pre-installed-plugin-slug=WP-Fevents-book&redirect=options-general.php%3Fpage%3Dfeventsbook&ni=true 25 The link spins up a new TasteWP instance with the WP FEvents Book plugin already installed. 23 26 24 27 Works with PHP 5.2.12 or higher, and PHP 7.x: please report any issue you find, and any feature you want. I'll try to fix the firsts and to implement the seconds! … … 63 66 64 67 == Changelog == 68 = 0.46 = 69 * fix for WP5.8.2 / PHP8.0 65 70 = 0.45 = 66 71 * include fix by @bl-solutions (thanks!) -
wp-fevents-book/trunk/wp-fevents-book.php
r2123796 r2637310 235 235 settings_fields( $this->wpf_code . '_options' ); 236 236 $optionsA = stripslashes_deep( get_option( $this->wpf_code ) ); 237 if ( $optionsA == false ) { 238 $cntA = 0; 239 } 240 else { 241 $cntA = sizeof( $optionsA ); 242 } 237 243 $cnt = 0; 238 244 ?> 239 245 <table class="form-table"> 240 246 <?php 241 while ( $cnt <= sizeof( $optionsA )) {247 while ( $cnt <= $cntA) { 242 248 $aridx = $this->wpf_code . '[' . $cnt . ']'; 243 if ( $cnt < sizeof( $optionsA )) {249 if ( $cnt < $cntA ) { 244 250 $options = array_merge( $evento_default, $optionsA[$cnt] ); 245 251 } else {
Note: See TracChangeset
for help on using the changeset viewer.