Plugin Directory

Changeset 3109506

Timestamp:
06/29/2024 12:19:27 AM (5 weeks ago)
Author:
dglingren
Message:

Fix 'order' portion of validate_sql_orderby() function.

Location:
media-library-assistant/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • media-library-assistant/trunk/includes/class-mla-core.php

    r3105342 r3109506  
    3131     * @var string
    3232     */
    33     const MLA_DEVELOPMENT_VERSION = '20240620';
     33    const MLA_DEVELOPMENT_VERSION = '2024062';
    3434
    3535    /**
  • media-library-assistant/trunk/includes/class-mla-shortcode-support.php

    r3098232 r3109506  
    27872787        $order = isset( $query_parameters['order'] ) ? ' ' . trim( strtoupper( $query_parameters['order'] ) ) : '';
    27882788        if ( !empty( $order ) ) {
    2789             $order = ( 'DESC' === $order ) ? 'DESC' : 'ASC';
     2789            $order = ( 'ASC';
    27902790        }
    27912791       
  • media-library-assistant/trunk/index.php

    r3105342 r3109506  
    88 * @package   Media Library Assistant
    99 * @author    David Lingren
    10  * @copyright 2023 David Lingren
     10 * @copyright 202 David Lingren
    1111 * @license   GPL-2.0-or-later
    1212 * @version   3.17
     
    1616Plugin Name: Media Library Assistant
    1717Plugin URI: http://davidlingren.com/#two
    18 Description: 20240620 Enhances the Media Library; powerful [mla_gallery] [mla_tag_cloud] [mla_term_list], taxonomy support, IPTC/EXIF/XMP/PDF processing, bulk/quick edit.
     18Description: 2024062 Enhances the Media Library; powerful [mla_gallery] [mla_tag_cloud] [mla_term_list], taxonomy support, IPTC/EXIF/XMP/PDF processing, bulk/quick edit.
    1919Version: 3.17
    2020Requires at least: 4.1
  • media-library-assistant/trunk/readme.txt

    r3105342 r3109506  
    190190= 3.18 =
    191191* Fix: **IMPORTANT: A Reflected Cross-Site Scripting security risk in the Media/Assistant page when orderby=rml is used has been mitigated.**
     192
    192193
    193194= 3.17 =
Note: See TracChangeset for help on using the changeset viewer.