Plugin Directory

Changeset 3103119


Ignore:
Timestamp:
06/15/2024 03:04:27 PM (22 months ago)
Author:
podpirate
Message:

Release 3.3.6

Location:
acf-quickedit-fields
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • acf-quickedit-fields/tags/3.3.6/include/ACFQuickEdit/Fields/Traits/ColumnLists.php

    r3042783 r3103119  
    1717        if ( is_object( $value ) && isset( $value->id ) ) {
    1818            $value = $value->id;
     19        } else if  ( is_array( $value ) && isset( $value['id'] ) ) {
     20            $value = $value['id'];
    1921        }
    2022        $value = (array) $value;
  • acf-quickedit-fields/tags/3.3.6/include/version.php

    r3073690 r3103119  
    1 <?php return "3.3.5";
     1<?php return "3.3.6";
  • acf-quickedit-fields/tags/3.3.6/index.php

    r3073690 r3103119  
    66Description: Show Advanced Custom Fields in post list table. Edit field values in Quick Edit and / or Bulk edit.
    77Author: Jörn Lund
    8 Version: 3.3.5
     8Version: 3.3.6
    99Author URI: https://github.com/mcguffin
    1010License: GPL3
     
    6262    ];
    6363    // performance
    64     if ( ! wp_doing_ajax() || in_array( wp_unslash($_REQUEST['action']), $acf_qef_ajax_actions ) ) {
     64    if ( ! wp_doing_ajax() || ( isset($_REQUEST['action']) && in_array( wp_unslash($_REQUEST['action']), $acf_qef_ajax_actions ) ) ) {
    6565        Admin\Admin::instance();
    6666    }
  • acf-quickedit-fields/tags/3.3.6/languages/acf-quickedit-fields.pot

    r3073690 r3103119  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: ACF QuickEdit Fields 3.3.5\n"
     5"Project-Id-Version: ACF QuickEdit Fields 3.3.6\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/acf-quickedit-fields\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-04-19T09:31:55+00:00\n"
     12"POT-Creation-Date: 2024-06-15T15:04:05+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.0\n"
     
    268268
    269269#. translators: Post ID
    270 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:66
     270#: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:68
    271271msgid "(Post %s not found)"
    272272msgstr ""
    273273
    274 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:73
     274#: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:75
    275275msgid "(no title)"
    276276msgstr ""
    277277
    278 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:106
     278#: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:108
    279279msgid "(User not found)"
    280280msgstr ""
    281281
    282282#. translators: Term ID
    283 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:122
     283#: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:124
    284284msgid "(Term ID %d not found)"
    285285msgstr ""
  • acf-quickedit-fields/tags/3.3.6/readme.txt

    r3073690 r3103119  
    66Tested up to: 6.5
    77Requires PHP: 7.2
    8 Stable tag: 3.3.5
     8Stable tag: 3.3.6
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    105105
    106106== Changelog ==
     107
     108= 3.3.6 =
     109 - Fix: PHP warning
     110 - Fix: Post object column shows garbage
    107111
    108112= 3.3.5 =
  • acf-quickedit-fields/trunk/include/ACFQuickEdit/Fields/Traits/ColumnLists.php

    r3042783 r3103119  
    1717        if ( is_object( $value ) && isset( $value->id ) ) {
    1818            $value = $value->id;
     19        } else if  ( is_array( $value ) && isset( $value['id'] ) ) {
     20            $value = $value['id'];
    1921        }
    2022        $value = (array) $value;
  • acf-quickedit-fields/trunk/include/version.php

    r3073690 r3103119  
    1 <?php return "3.3.5";
     1<?php return "3.3.6";
  • acf-quickedit-fields/trunk/index.php

    r3073690 r3103119  
    66Description: Show Advanced Custom Fields in post list table. Edit field values in Quick Edit and / or Bulk edit.
    77Author: Jörn Lund
    8 Version: 3.3.5
     8Version: 3.3.6
    99Author URI: https://github.com/mcguffin
    1010License: GPL3
     
    6262    ];
    6363    // performance
    64     if ( ! wp_doing_ajax() || in_array( wp_unslash($_REQUEST['action']), $acf_qef_ajax_actions ) ) {
     64    if ( ! wp_doing_ajax() || ( isset($_REQUEST['action']) && in_array( wp_unslash($_REQUEST['action']), $acf_qef_ajax_actions ) ) ) {
    6565        Admin\Admin::instance();
    6666    }
  • acf-quickedit-fields/trunk/languages/acf-quickedit-fields.pot

    r3073690 r3103119  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: ACF QuickEdit Fields 3.3.5\n"
     5"Project-Id-Version: ACF QuickEdit Fields 3.3.6\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/acf-quickedit-fields\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-04-19T09:31:55+00:00\n"
     12"POT-Creation-Date: 2024-06-15T15:04:05+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.0\n"
     
    268268
    269269#. translators: Post ID
    270 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:66
     270#: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:68
    271271msgid "(Post %s not found)"
    272272msgstr ""
    273273
    274 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:73
     274#: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:75
    275275msgid "(no title)"
    276276msgstr ""
    277277
    278 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:106
     278#: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:108
    279279msgid "(User not found)"
    280280msgstr ""
    281281
    282282#. translators: Term ID
    283 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:122
     283#: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:124
    284284msgid "(Term ID %d not found)"
    285285msgstr ""
  • acf-quickedit-fields/trunk/readme.txt

    r3073690 r3103119  
    66Tested up to: 6.5
    77Requires PHP: 7.2
    8 Stable tag: 3.3.5
     8Stable tag: 3.3.6
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    105105
    106106== Changelog ==
     107
     108= 3.3.6 =
     109 - Fix: PHP warning
     110 - Fix: Post object column shows garbage
    107111
    108112= 3.3.5 =
Note: See TracChangeset for help on using the changeset viewer.