Plugin Directory

Changeset 2906374


Ignore:
Timestamp:
04/30/2023 05:02:15 PM (3 years ago)
Author:
Beee
Message:

Fix incorrect index to store single meta

Location:
acf-city-selector/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • acf-city-selector/trunk/ACF_City_Selector.php

    r2841217 r2906374  
    44    Plugin URI:     https://acf-city-selector.com
    55    Description:    An extension for ACF which allows you to select a city based on country and province/state.
    6     Version:        1.10.1
     6    Version:        1.11.0
    77    Tested up to:   6.1.1
    88    Requires PHP:   7.0
     
    3636                    'db_version' => '1.0',
    3737                    'url'        => plugin_dir_url( __FILE__ ),
    38                     'version'    => '1.10.1',
     38                    'version'    => '1.11.0',
    3939                );
    4040
  • acf-city-selector/trunk/admin/acf-city-selector-v5.php

    r2841215 r2906374  
    131131                $selected_city    = ( isset( $field[ 'value' ][ 'cityName' ] ) ) ? $field[ 'value' ][ 'cityName' ] : false;
    132132                $show_first       = true;
    133                 $store_meta       = ( isset( $field[ 'value' ][ 'store_meta' ] ) ) ? $field[ 'value' ][ 'store_meta' ] : false;
     133                $store_meta       = ( isset( $field[ 'store_meta' ] ) ) ? $field[ 'store_meta' ] : false;
    134134                $which_fields     = ( isset( $field[ 'which_fields' ] ) ) ? $field[ 'which_fields' ] : 'all';
    135135
  • acf-city-selector/trunk/readme.txt

    r2841217 r2906374  
    55Requires PHP: 7.0
    66Tested up to: 6.1.1
    7 Stable tag: 1.10.1
     7Stable tag: 1.11.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.