Plugin Directory

Changeset 3337292


Ignore:
Timestamp:
07/31/2025 01:04:36 PM (8 months ago)
Author:
Jonua
Message:

Updates stable tag to 1.3.30

Location:
advanced-custom-fields-table-field/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • advanced-custom-fields-table-field/trunk/acf-table.php

    r3298546 r3337292  
    44Plugin URI: https://www.acf-table-field.com
    55Description: This free Add-on adds a table field type for the plugins Advanced Custom Fields and Secure Custom Fields.
    6 Version: 1.3.29
     6Version: 1.3.30
    77Author: Johann Heyne
    88Author URI: http://www.johannheyne.de
  • advanced-custom-fields-table-field/trunk/changelog.txt

    r3298546 r3337292  
    11== Changelog ==
     2
     3= 1.3.30 =
     4* Enables using update_field() on user fields
    25
    36= 1.3.29 =
  • advanced-custom-fields-table-field/trunk/class-jh-acf-field-table.php

    r3298546 r3337292  
    1515    *  @return  n/a
    1616    */
     17
     18    public $settings;
     19
     20    public $name;
     21
     22    public $description;
     23
     24    public $preview_image;
     25
     26    public $doc_url;
     27
     28    public $label;
     29
     30    public $category;
     31
     32    public $defaults;
     33
     34    public $l10n;
    1735
    1836    function __construct() {
     
    2240        */
    2341        $this->settings = array(
    24             'version' => '1.3.29',
     42            'version' => '1.3.30',
    2543            'dir_url' => plugins_url( '', __FILE__ ) . '/',
    2644        );
     
    450468                $data = get_post_meta( $post_id, $field['name'], true );
    451469
     470                // try user meta
     471                if ( empty( $data ) ) {
     472
     473                    $data = get_user_meta( str_replace('user_', '', $post_id ), $field['name'], true );
     474                }
     475
    452476                // try term_meta
    453477                if ( empty( $data ) ) {
     
    456480                }
    457481
    458                 //try options
     482                // try options
    459483                if (
    460484                    empty( $data ) AND (
  • advanced-custom-fields-table-field/trunk/js/input-v4.js

    r3298546 r3337292  
    55        var t = this;
    66
    7         t.version = '1.3.29';
     7        t.version = '1.3.30';
    88
    99        t.param = {};
  • advanced-custom-fields-table-field/trunk/js/input-v5.js

    r3298546 r3337292  
    55        var t = this;
    66
    7         t.version = '1.3.29';
     7        t.version = '1.3.30';
    88
    99        t.param = {};
  • advanced-custom-fields-table-field/trunk/readme.txt

    r3298546 r3337292  
    44Requires at least: 5.3
    55Tested up to: 6.8
    6 Stable tag: 1.3.29
     6Stable tag: 1.3.30
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    519519== Changelog ==
    520520
     521= 1.3.30 =
     522* Enables using update_field() on user fields
     523
    521524= 1.3.29 =
    522525* Fixes missing field preview image.
Note: See TracChangeset for help on using the changeset viewer.