Plugin Directory

Changeset 3298208


Ignore:
Timestamp:
05/21/2025 04:41:25 PM (10 months ago)
Author:
Jonua
Message:

Fixes required PHP version to 7.4
Improves trowing a warning
Fixes Plugin name and description

Location:
advanced-custom-fields-table-field
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • advanced-custom-fields-table-field/tags/1.3.28/readme.txt

    r3297509 r3298208  
    55Tested up to: 6.8.1
    66Stable tag: 1.3.28
    7 Requires PHP: 7.5
     7Requires PHP: 7.4
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • advanced-custom-fields-table-field/trunk/acf-table.php

    r3297507 r3298208  
    11<?php
    22/*
    3 Plugin Name: Advanced Custom Fields: Table Field
     3Plugin Name: Table Field Add-on for ACF and SCF
    44Plugin URI: https://www.acf-table-field.com
    5 Description: This free Add-on adds a table field type for the Advanced Custom Fields plugin.
     5Description: This free Add-on adds a table field type for the plugins Advanced Custom Fields and Secure Custom Fields.
    66Version: 1.3.28
    77Author: Johann Heyne
  • advanced-custom-fields-table-field/trunk/class-jh-acf-field-table.php

    r3297687 r3298208  
    9191
    9292                            // canceling meta value uptdate
    93                             error_log( 'The plugin advanced-custom-fields-table-field prevented a third party update_post_meta( ' . $object_id . ', "' . $meta_key . '", $value ); action that would save a broken JSON string.' . "\n" . 'For details see https://codex.wordpress.org/Function_Reference/update_post_meta#Character_Escaping.' );
     93                            $error_message = 'The plugin advanced-custom-fields-table-field prevented a third party update_post_meta( ' . $object_id . ', "' . $meta_key . '", $value ); action that would save a broken JSON string.' . "\n" . 'For details see https://codex.wordpress.org/Function_Reference/update_post_meta#Character_Escaping.';
     94                            trigger_error( esc_html( $error_message ), E_USER_WARNING );
    9495                            return true;
    9596                        }
  • advanced-custom-fields-table-field/trunk/readme.txt

    r3297680 r3298208  
    33Tags: acf, table, scf, advanced custom fields, secure custom fields
    44Requires at least: 5.3
    5 Tested up to: 6.8.1
     5Tested up to: 6.8
    66Stable tag: 1.3.28
    7 Requires PHP: 7.5
     7Requires PHP: 7.4
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.