Changeset 1964718
- Timestamp:
- 10/29/2018 12:51:04 AM (7 years ago)
- Location:
- easyreservations/trunk
- Files:
-
- 6 edited
-
changelog.html (modified) (1 diff)
-
easyReservations.php (modified) (1 diff)
-
lib/class-easyreservations.php (modified) (2 diffs)
-
lib/updates/install.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
easyreservations/trunk/changelog.html
r1964306 r1964718 1 <h2>easyReservations 5.0.2 - 29.10.2018</h2> 2 <ul> 3 <li><strong>Bugs fixed</strong> 4 <ul> 5 <li>Installation of reservation database</li> 6 </ul> 7 </li> 8 </ul> 1 9 <h2>easyReservations 5.0.1 - 28.10.2018</h2> 2 10 <ul> -
easyreservations/trunk/easyReservations.php
r1964306 r1964718 4 4 Plugin URI: http://www.easyreservations.org 5 5 Description: This powerful property and reservation management plugin allows you to receive, schedule and handle your bookings easily! 6 Version: 5.0. 16 Version: 5.0.2 7 7 Author: Feryaz Beer 8 8 Author URI: http://www.feryaz.de -
easyreservations/trunk/lib/class-easyreservations.php
r1964306 r1964718 10 10 final class easyReservations { 11 11 //Current Version of easyReservations 12 public $version = '5.0. 1';12 public $version = '5.0.2'; 13 13 14 14 //Current Database Version of easyReservations … … 42 42 $reservations_settings = get_option( "reservations_settings" ); 43 43 44 define( 'RESERVATIONS_VERSION', '5.0. 1' );44 define( 'RESERVATIONS_VERSION', '5.0.2' ); 45 45 define( 'RESERVATIONS_ABSPATH', dirname( RESERVATIONS_PLUGIN_FILE ) . '/' ); 46 46 define( 'RESERVATIONS_URL', WP_PLUGIN_URL . '/easyreservations/' ); -
easyreservations/trunk/lib/updates/install.php
r1964306 r1964718 86 86 KEY meta_key (meta_key($max_index_length)) 87 87 ) $charset_collate;"; 88 dbDelta($sql); 88 89 89 90 $table_name = $wpdb->prefix . "reservationmeta"; -
easyreservations/trunk/readme.txt
r1964306 r1964718 4 4 Requires at least: 3.3 5 5 Tested up to: 4.9.8 6 Stable tag: 5.0. 16 Stable tag: 5.0.2 7 7 8 8 This powerful property and reservation management plugin allows you to receive, schedule and handle your bookings easily! -
easyreservations/trunk/uninstall.php
r1780404 r1964718 103 103 $table_name = $wpdb->prefix."reservations"; 104 104 $wpdb->query( "DROP TABLE IF EXISTS $table_name" ); 105 106 $table_name = $wpdb->prefix."reservationsmeta"; 107 $wpdb->query( "DROP TABLE IF EXISTS $table_name" ); 105 108 } 106 109 }
Note: See TracChangeset
for help on using the changeset viewer.