Plugin Directory

Changeset 3330817


Ignore:
Timestamp:
07/20/2025 07:25:01 AM (9 months ago)
Author:
scaleflex
Message:

Fix query issue

Location:
scaleflex-vxp-dam-dmo
Files:
57 added
4 edited

Legend:

Unmodified
Added
Removed
  • scaleflex-vxp-dam-dmo/trunk/README.txt

    r3329668 r3330817  
    55Tested up to: 6.8
    66Requires at least: 4.8
    7 Stable tag: 1.0.10
     7Stable tag: 1.0.11
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    199199Add example url for webhook
    200200
     201= 1.0.11 =
     202Fix query issue
     203
    201204== Upgrade Notice ==
    202205
  • scaleflex-vxp-dam-dmo/trunk/function/register-action.php

    r3320917 r3330817  
    10611061                                AND pm.meta_key = 'sfxvxp_dam_select_metadata'
    10621062                                AND pm.meta_value LIKE %s
    1063                                 %s
     1063                                $limitQuery
    10641064                            )
    10651065                        )
     
    10681068                    GROUP BY p.ID
    10691069                    ORDER BY p.post_title DESC, p.post_date DESC
    1070                     %s"
    1071                 , $search_term, $search_term, $search_term, $search_term, $limitQuery, $limitQuery));
     1070                    $limitQuery"
     1071                , $search_term, $search_term, $search_term, $search_term));
    10721072
    10731073                if (!empty($result)) {
  • scaleflex-vxp-dam-dmo/trunk/function/register-filter.php

    r3320917 r3330817  
    9999                                AND pm.meta_key = 'sfxvxp_dam_select_metadata'
    100100                                AND pm.meta_value LIKE %s
    101                                 %s
     101                                $limitQuery
    102102                            )
    103103                        )
     
    106106                    GROUP BY p.ID
    107107                    ORDER BY p.post_title DESC, p.post_date DESC
    108                     %s"
    109                 , $search_term, $search_term, $search_term, $search_term, $limitQuery, $limitQuery));
     108                    $limitQuery"
     109                , $search_term, $search_term, $search_term, $search_term));
    110110
    111111            if (!empty($result)) {
  • scaleflex-vxp-dam-dmo/trunk/scaleflex-vxp.php

    r3329668 r3330817  
    33 * Plugin Name: Scaleflex VXP - DAM, DMO
    44 * Description: Scaleflex VXP centralizes, manages, optimizes and accelerates your media assets such as images, videos and document in one single source of truth, improving team collaboration and brand consistency.
    5  * Version: 1.0.10
     5 * Version: 1.0.11
    66 * Author: Scaleflex
    77 * Author URI: https://www.scaleflex.com
     
    1818
    1919// Define plugin constants
    20 define('SFXVXP_VERSION', '1.0.10');
     20define('SFXVXP_VERSION', '1.0.11');
    2121define('SFXVXP_PLUGIN_DIR', plugin_dir_path(__FILE__));
    2222define('SFXVXP_PLUGIN_URL', plugin_dir_url(__FILE__));
Note: See TracChangeset for help on using the changeset viewer.