Plugin Directory

Changeset 1964718


Ignore:
Timestamp:
10/29/2018 12:51:04 AM (7 years ago)
Author:
feryaz
Message:

Update to 5.0.2

Location:
easyreservations/trunk
Files:
6 edited

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>
    19<h2>easyReservations 5.0.1 - 28.10.2018</h2>
    210<ul>
  • easyreservations/trunk/easyReservations.php

    r1964306 r1964718  
    44Plugin URI: http://www.easyreservations.org
    55Description: This powerful property and reservation management plugin allows you to receive, schedule and handle your bookings easily!
    6 Version: 5.0.1
     6Version: 5.0.2
    77Author: Feryaz Beer
    88Author URI: http://www.feryaz.de
  • easyreservations/trunk/lib/class-easyreservations.php

    r1964306 r1964718  
    1010final class easyReservations {
    1111    //Current Version of easyReservations
    12     public $version = '5.0.1';
     12    public $version = '5.0.2';
    1313
    1414    //Current Database Version of easyReservations
     
    4242        $reservations_settings = get_option( "reservations_settings" );
    4343
    44         define( 'RESERVATIONS_VERSION', '5.0.1' );
     44        define( 'RESERVATIONS_VERSION', '5.0.2' );
    4545        define( 'RESERVATIONS_ABSPATH', dirname( RESERVATIONS_PLUGIN_FILE ) . '/' );
    4646        define( 'RESERVATIONS_URL', WP_PLUGIN_URL . '/easyreservations/' );
  • easyreservations/trunk/lib/updates/install.php

    r1964306 r1964718  
    8686      KEY meta_key (meta_key($max_index_length))
    8787    ) $charset_collate;";
     88    dbDelta($sql);
    8889
    8990    $table_name = $wpdb->prefix . "reservationmeta";
  • easyreservations/trunk/readme.txt

    r1964306 r1964718  
    44Requires at least: 3.3
    55Tested up to: 4.9.8
    6 Stable tag: 5.0.1
     6Stable tag: 5.0.2
    77
    88This powerful property and reservation management plugin allows you to receive, schedule and handle your bookings easily!
  • easyreservations/trunk/uninstall.php

    r1780404 r1964718  
    103103        $table_name = $wpdb->prefix."reservations";
    104104        $wpdb->query( "DROP TABLE IF EXISTS $table_name" );
     105
     106        $table_name = $wpdb->prefix."reservationsmeta";
     107        $wpdb->query( "DROP TABLE IF EXISTS $table_name" );
    105108    }
    106109}
Note: See TracChangeset for help on using the changeset viewer.