Plugin Directory

Changeset 2977379


Ignore:
Timestamp:
10/11/2023 08:22:43 AM (2 years ago)
Author:
endortrails
Message:

Update to version 2.5.8.3 from GitHub

Location:
sell-media
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • sell-media/tags/2.5.8.3/inc/ajax.php

    r2672639 r2977379  
    144144function sell_media_ajax_filter_search( $param = array(), $output_the_value_or_return = true ){
    145145
     146    // Check if post is empty.
     147    if( !empty( $_POST ) ) {
     148        $param = $_POST;
     149    }
     150   
    146151    // Check if parameters are empty.
    147152    if( empty( $param ) ){
  • sell-media/tags/2.5.8.3/readme.txt

    r2973402 r2977379  
    66Requires at least: 6.2.1
    77Tested up to: 6.3.1
    8 Stable tag: 2.5.8.2
     8Stable tag: 2.5.8.3
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    221221
    222222== Changelog ==
     223
     224= 2.5.8.3 =
     225* Fix: Search filter not showing results bug fix
    223226
    224227= 2.5.8.2 =
  • sell-media/tags/2.5.8.3/sell-media.php

    r2973402 r2977379  
    44 * Plugin URI: http://graphpaperpress.com/plugins/sell-media/
    55 * Description: A plugin for selling photos, prints and other downloads.
    6  * Version: 2.5.8.2
     6 * Version: 2.5.8.3
    77 * Author: Graph Paper Press
    88 * Author URI: http://graphpaperpress.com
     
    2525 * @category Core
    2626 * @author Thad Allender
    27  * @version 2.5.8.2
     27 * @version 2.5.8.3
    2828 */
    2929
     
    156156        public function __clone() {
    157157            // Cloning instances of the class is forbidden.
    158             _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'sell_media' ), '2.5.8.2' );
     158            _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'sell_media' ), '2.5.8.3' );
    159159        }
    160160
     
    168168        public function __wakeup() {
    169169            // Unserializing instances of the class is forbidden.
    170             _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'sell_media' ), '2.5.8.2' );
     170            _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'sell_media' ), '2.5.8.3' );
    171171        }
    172172
     
    182182            // Plugin version.
    183183            if ( ! defined( 'SELL_MEDIA_VERSION' ) ) {
    184                 define( 'SELL_MEDIA_VERSION', '2.5.8.2' );
     184                define( 'SELL_MEDIA_VERSION', '2.5.8.3' );
    185185            }
    186186
  • sell-media/trunk/inc/ajax.php

    r2672639 r2977379  
    144144function sell_media_ajax_filter_search( $param = array(), $output_the_value_or_return = true ){
    145145
     146    // Check if post is empty.
     147    if( !empty( $_POST ) ) {
     148        $param = $_POST;
     149    }
     150   
    146151    // Check if parameters are empty.
    147152    if( empty( $param ) ){
  • sell-media/trunk/readme.txt

    r2973402 r2977379  
    66Requires at least: 6.2.1
    77Tested up to: 6.3.1
    8 Stable tag: 2.5.8.2
     8Stable tag: 2.5.8.3
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    221221
    222222== Changelog ==
     223
     224= 2.5.8.3 =
     225* Fix: Search filter not showing results bug fix
    223226
    224227= 2.5.8.2 =
  • sell-media/trunk/sell-media.php

    r2973402 r2977379  
    44 * Plugin URI: http://graphpaperpress.com/plugins/sell-media/
    55 * Description: A plugin for selling photos, prints and other downloads.
    6  * Version: 2.5.8.2
     6 * Version: 2.5.8.3
    77 * Author: Graph Paper Press
    88 * Author URI: http://graphpaperpress.com
     
    2525 * @category Core
    2626 * @author Thad Allender
    27  * @version 2.5.8.2
     27 * @version 2.5.8.3
    2828 */
    2929
     
    156156        public function __clone() {
    157157            // Cloning instances of the class is forbidden.
    158             _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'sell_media' ), '2.5.8.2' );
     158            _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'sell_media' ), '2.5.8.3' );
    159159        }
    160160
     
    168168        public function __wakeup() {
    169169            // Unserializing instances of the class is forbidden.
    170             _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'sell_media' ), '2.5.8.2' );
     170            _doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'sell_media' ), '2.5.8.3' );
    171171        }
    172172
     
    182182            // Plugin version.
    183183            if ( ! defined( 'SELL_MEDIA_VERSION' ) ) {
    184                 define( 'SELL_MEDIA_VERSION', '2.5.8.2' );
     184                define( 'SELL_MEDIA_VERSION', '2.5.8.3' );
    185185            }
    186186
Note: See TracChangeset for help on using the changeset viewer.