Plugin Directory

Changeset 1660474


Ignore:
Timestamp:
05/18/2017 10:21:24 PM (9 years ago)
Author:
pyro3x
Message:

bugfix - if is quick edit, we ignore category image actions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wpcustom-category-image/trunk/WPCustomCategoryImage.php

    r1660473 r1660474  
    192192    public function save_image($term_id)
    193193    {
     194        // Ignore quick edit
     195        if (isset($_POST['action']) && $_POST['action'] == 'inline-save-tax') {
     196            return;
     197        }
     198
    194199        $attachment_id = isset($_POST['categoryimage_attachment']) ? (int) $_POST['categoryimage_attachment'] : null;
    195200
Note: See TracChangeset for help on using the changeset viewer.