Changeset 3103119
- Timestamp:
- 06/15/2024 03:04:27 PM (22 months ago)
- Location:
- acf-quickedit-fields
- Files:
-
- 10 edited
- 1 copied
-
tags/3.3.6 (copied) (copied from acf-quickedit-fields/trunk)
-
tags/3.3.6/include/ACFQuickEdit/Fields/Traits/ColumnLists.php (modified) (1 diff)
-
tags/3.3.6/include/version.php (modified) (1 diff)
-
tags/3.3.6/index.php (modified) (2 diffs)
-
tags/3.3.6/languages/acf-quickedit-fields.pot (modified) (3 diffs)
-
tags/3.3.6/readme.txt (modified) (2 diffs)
-
trunk/include/ACFQuickEdit/Fields/Traits/ColumnLists.php (modified) (1 diff)
-
trunk/include/version.php (modified) (1 diff)
-
trunk/index.php (modified) (2 diffs)
-
trunk/languages/acf-quickedit-fields.pot (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
acf-quickedit-fields/tags/3.3.6/include/ACFQuickEdit/Fields/Traits/ColumnLists.php
r3042783 r3103119 17 17 if ( is_object( $value ) && isset( $value->id ) ) { 18 18 $value = $value->id; 19 } else if ( is_array( $value ) && isset( $value['id'] ) ) { 20 $value = $value['id']; 19 21 } 20 22 $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 6 6 Description: Show Advanced Custom Fields in post list table. Edit field values in Quick Edit and / or Bulk edit. 7 7 Author: Jörn Lund 8 Version: 3.3. 58 Version: 3.3.6 9 9 Author URI: https://github.com/mcguffin 10 10 License: GPL3 … … 62 62 ]; 63 63 // 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 ) ) ) { 65 65 Admin\Admin::instance(); 66 66 } -
acf-quickedit-fields/tags/3.3.6/languages/acf-quickedit-fields.pot
r3073690 r3103119 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: ACF QuickEdit Fields 3.3. 5\n"5 "Project-Id-Version: ACF QuickEdit Fields 3.3.6\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/acf-quickedit-fields\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-0 4-19T09:31:55+00:00\n"12 "POT-Creation-Date: 2024-06-15T15:04:05+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.10.0\n" … … 268 268 269 269 #. translators: Post ID 270 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:6 6270 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:68 271 271 msgid "(Post %s not found)" 272 272 msgstr "" 273 273 274 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:7 3274 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:75 275 275 msgid "(no title)" 276 276 msgstr "" 277 277 278 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:10 6278 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:108 279 279 msgid "(User not found)" 280 280 msgstr "" 281 281 282 282 #. translators: Term ID 283 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:12 2283 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:124 284 284 msgid "(Term ID %d not found)" 285 285 msgstr "" -
acf-quickedit-fields/tags/3.3.6/readme.txt
r3073690 r3103119 6 6 Tested up to: 6.5 7 7 Requires PHP: 7.2 8 Stable tag: 3.3. 58 Stable tag: 3.3.6 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 105 105 106 106 == Changelog == 107 108 = 3.3.6 = 109 - Fix: PHP warning 110 - Fix: Post object column shows garbage 107 111 108 112 = 3.3.5 = -
acf-quickedit-fields/trunk/include/ACFQuickEdit/Fields/Traits/ColumnLists.php
r3042783 r3103119 17 17 if ( is_object( $value ) && isset( $value->id ) ) { 18 18 $value = $value->id; 19 } else if ( is_array( $value ) && isset( $value['id'] ) ) { 20 $value = $value['id']; 19 21 } 20 22 $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 6 6 Description: Show Advanced Custom Fields in post list table. Edit field values in Quick Edit and / or Bulk edit. 7 7 Author: Jörn Lund 8 Version: 3.3. 58 Version: 3.3.6 9 9 Author URI: https://github.com/mcguffin 10 10 License: GPL3 … … 62 62 ]; 63 63 // 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 ) ) ) { 65 65 Admin\Admin::instance(); 66 66 } -
acf-quickedit-fields/trunk/languages/acf-quickedit-fields.pot
r3073690 r3103119 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: ACF QuickEdit Fields 3.3. 5\n"5 "Project-Id-Version: ACF QuickEdit Fields 3.3.6\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/acf-quickedit-fields\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-0 4-19T09:31:55+00:00\n"12 "POT-Creation-Date: 2024-06-15T15:04:05+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.10.0\n" … … 268 268 269 269 #. translators: Post ID 270 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:6 6270 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:68 271 271 msgid "(Post %s not found)" 272 272 msgstr "" 273 273 274 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:7 3274 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:75 275 275 msgid "(no title)" 276 276 msgstr "" 277 277 278 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:10 6278 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:108 279 279 msgid "(User not found)" 280 280 msgstr "" 281 281 282 282 #. translators: Term ID 283 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:12 2283 #: include/ACFQuickEdit/Fields/Traits/ColumnLists.php:124 284 284 msgid "(Term ID %d not found)" 285 285 msgstr "" -
acf-quickedit-fields/trunk/readme.txt
r3073690 r3103119 6 6 Tested up to: 6.5 7 7 Requires PHP: 7.2 8 Stable tag: 3.3. 58 Stable tag: 3.3.6 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 105 105 106 106 == Changelog == 107 108 = 3.3.6 = 109 - Fix: PHP warning 110 - Fix: Post object column shows garbage 107 111 108 112 = 3.3.5 =
Note: See TracChangeset
for help on using the changeset viewer.