Plugin Directory

Changeset 324058


Ignore:
Timestamp:
12/18/2010 03:01:12 AM (15 years ago)
Author:
blepoxp
Message:

Fixed missing URL for CSV import

Location:
simplemap
Files:
7 deleted
3 edited
12 copied

Legend:

Unmodified
Added
Removed
  • simplemap/tags/2.0.1/classes/import-export.php

    r324034 r324058  
    257257                                                            update_post_meta( $id, 'location_fax', $wpdb->prepare( $to_insert['fax'] ) );
    258258                                                            update_post_meta( $id, 'location_email', $wpdb->prepare( $to_insert['email'] ) );
     259                                                            update_post_meta( $id, 'location_url', $wpdb->prepare( $to_insert['url'] ) );
    259260                                                            update_post_meta( $id, 'location_special', $wpdb->prepare( $to_insert['special'] ) );
    260261                                                            update_post_meta( $id, 'location_lat', $wpdb->prepare( $to_insert['lat'] ) );
  • simplemap/tags/2.0.1/readme.txt

    r324034 r324058  
    66Requires at least: 2.8
    77Tested up to: 3.1
    8 Stable tag: 2.0
     8Stable tag: 2.0.1
    99
    1010SimpleMap is an easy-to-use international store locator plugin that uses Google Maps to display information directly on your WordPress site.
     
    8686
    8787== Changelog ==
     88
     89= 2.0.1 =
     90* Fixed bug that was preventing importing of URL from CSV file
    8891
    8992= 2.0 =
  • simplemap/trunk/classes/import-export.php

    r324034 r324058  
    257257                                                            update_post_meta( $id, 'location_fax', $wpdb->prepare( $to_insert['fax'] ) );
    258258                                                            update_post_meta( $id, 'location_email', $wpdb->prepare( $to_insert['email'] ) );
     259                                                            update_post_meta( $id, 'location_url', $wpdb->prepare( $to_insert['url'] ) );
    259260                                                            update_post_meta( $id, 'location_special', $wpdb->prepare( $to_insert['special'] ) );
    260261                                                            update_post_meta( $id, 'location_lat', $wpdb->prepare( $to_insert['lat'] ) );
  • simplemap/trunk/readme.txt

    r324034 r324058  
    66Requires at least: 2.8
    77Tested up to: 3.1
    8 Stable tag: 2.0
     8Stable tag: 2.0.1
    99
    1010SimpleMap is an easy-to-use international store locator plugin that uses Google Maps to display information directly on your WordPress site.
     
    8686
    8787== Changelog ==
     88
     89= 2.0.1 =
     90* Fixed bug that was preventing importing of URL from CSV file
    8891
    8992= 2.0 =
Note: See TracChangeset for help on using the changeset viewer.