Plugin Directory

Changeset 643448


Ignore:
Timestamp:
12/22/2012 05:31:31 PM (13 years ago)
Author:
DerWebschmied
Message:

Release 2.6

Location:
google-routeplaner
Files:
38 added
3 edited

Legend:

Unmodified
Added
Removed
  • google-routeplaner/trunk/google-routeplaner-main-page.php

    r643415 r643448  
    55            <h3><?php _e('Changelog', 'google_routeplaner'); ?></h3>
    66            <div class="inside" style="height: 300px; overflow: auto; overflow-y: scroll;">
     7                <h5>Version 2.6</h5>
     8                    <ul>
     9                        <li>Hotfix for trouble with version 2.5</li>
     10                    </ul>
    711                <h5>Version 2.5</h5>
    812                    <ul>
  • google-routeplaner/trunk/google-routeplaner.php

    r643415 r643448  
    44Plugin URI: http://support.derwebschmied.de
    55Description: Allows you to add one or more route planners based on Google Maps to help your users to find a specific place.
    6 Version: 2.5
     6Version: 2.6
    77Author: DerWebschmied
    88Author URI: http://support.derwebschmied.de
     
    9191
    9292function google_routeplaner_update() {
     93    global $wpdb;
     94
    9395    /*
    9496     * Update old information in the database for version 2
     
    113115     * Update old information in the database for version 2.5
    114116     */
    115     $wpdb->query('ALTER TABLE  `wp_google_routeplaner` ADD  `planer_width_unit` VARCHAR( 5 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT  \'px\' AFTER  `planer_width`');
    116     $wpdb->query('ALTER TABLE  `wp_google_routeplaner` ADD  `planer_height_unit` VARCHAR( 5 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT  \'px\' AFTER  `planer_height`');
    117     $wpdb->query('ALTER TABLE  `wp_google_routeplaner` ADD  `planer_autofill` INT NOT NULL DEFAULT  \'0\' AFTER  `planer_type_control`');
    118    
    119    
     117    $wpdb->query('ALTER TABLE  `' . $wpdb->prefix . 'google_routeplaner` ADD  `planer_width_unit` VARCHAR( 5 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT  \'px\' AFTER  `planer_width`');
     118    $wpdb->query('ALTER TABLE  `' . $wpdb->prefix . 'google_routeplaner` ADD  `planer_height_unit` VARCHAR( 5 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT  \'px\' AFTER  `planer_height`');
     119    $wpdb->query('ALTER TABLE  `' . $wpdb->prefix . 'google_routeplaner` ADD  `planer_autofill` INT NOT NULL DEFAULT  \'0\' AFTER  `planer_type_control`');
     120
    120121}
    121122
  • google-routeplaner/trunk/readme.txt

    r643415 r643448  
    55Requires at least: 3.0
    66Tested up to: 3.4.2
    7 Stable tag: 2.5
     7Stable tag: 2.6
    88License: Feel free to edit for personal use
    99
Note: See TracChangeset for help on using the changeset viewer.