Plugin Directory

Changeset 3482938


Ignore:
Timestamp:
03/15/2026 07:49:19 AM (13 days ago)
Author:
rafiq91
Message:

Update to version 8.6.5 from GitHub

Location:
directorist
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • directorist/tags/8.6.5/config.php

    r3480392 r3482938  
    22// Plugin version.
    33if ( ! defined( 'ATBDP_VERSION' ) ) {
    4     define( 'ATBDP_VERSION', '8.6.4' );
     4    define( 'ATBDP_VERSION', '8.6.5' );
    55}
    66// Plugin Folder Path.
  • directorist/tags/8.6.5/directorist-base.php

    r3480392 r3482938  
    44 * Plugin URI: https://wpwax.com
    55 * Description: A comprehensive solution to create professional looking directory site of any kind. Like Yelp, Foursquare, etc.
    6  * Version: 8.6.4
     6 * Version: 8.6.5
    77 * Author: wpWax
    88 * Author URI: https://wpwax.com
  • directorist/tags/8.6.5/includes/model/Account.php

    r3338419 r3482938  
    161161            'active_form'               => $active_form,
    162162            'display_rememberme'        => get_directorist_option( 'display_rememberme', 1 ) ? 'yes' : 'no',
    163             'rememberme_label'          => get_directorist_option( 'log_rememberme' ),
     163            'rememberme_label'          => get_directorist_option( 'log_rememberme', __( 'Remember Me', 'directorist' ) ),
    164164        ];
    165165
  • directorist/tags/8.6.5/includes/rest-api/Version1/class-temporary-media-upload-controller.php

    r3478925 r3482938  
    5555        }
    5656   
    57         if ( ! current_user_can( 'upload_files' ) ) {
    58             return new WP_Error(
    59                 'directorist_rest_cannot_create',
    60                 __( 'Sorry, you are not allowed to upload any file.', 'directorist' ),
    61                 array( 'status' => 403 )
    62             );
    63         }
    6457   
    6558        return true;
  • directorist/tags/8.6.5/readme.txt

    r3480392 r3482938  
    66Tested up to: 6.9
    77Requires PHP: 7.0
    8 Stable tag: 8.6.4
     8Stable tag: 8.6.5
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    307307== Changelog ==
    308308
     309= 8.6.5 - Mar 15, 2026 =
     310
     311**Fixed**
     312 - Subscriber image upload issue in add listing form.
     313 - "Remember Me" label not showing for new users. Added default value.
     314
    309315= 8.6.4 - Mar 11, 2026 =
    310316
  • directorist/trunk/config.php

    r3480392 r3482938  
    22// Plugin version.
    33if ( ! defined( 'ATBDP_VERSION' ) ) {
    4     define( 'ATBDP_VERSION', '8.6.4' );
     4    define( 'ATBDP_VERSION', '8.6.5' );
    55}
    66// Plugin Folder Path.
  • directorist/trunk/directorist-base.php

    r3480392 r3482938  
    44 * Plugin URI: https://wpwax.com
    55 * Description: A comprehensive solution to create professional looking directory site of any kind. Like Yelp, Foursquare, etc.
    6  * Version: 8.6.4
     6 * Version: 8.6.5
    77 * Author: wpWax
    88 * Author URI: https://wpwax.com
  • directorist/trunk/includes/model/Account.php

    r3338419 r3482938  
    161161            'active_form'               => $active_form,
    162162            'display_rememberme'        => get_directorist_option( 'display_rememberme', 1 ) ? 'yes' : 'no',
    163             'rememberme_label'          => get_directorist_option( 'log_rememberme' ),
     163            'rememberme_label'          => get_directorist_option( 'log_rememberme', __( 'Remember Me', 'directorist' ) ),
    164164        ];
    165165
  • directorist/trunk/includes/rest-api/Version1/class-temporary-media-upload-controller.php

    r3478925 r3482938  
    5555        }
    5656   
    57         if ( ! current_user_can( 'upload_files' ) ) {
    58             return new WP_Error(
    59                 'directorist_rest_cannot_create',
    60                 __( 'Sorry, you are not allowed to upload any file.', 'directorist' ),
    61                 array( 'status' => 403 )
    62             );
    63         }
    6457   
    6558        return true;
  • directorist/trunk/readme.txt

    r3480392 r3482938  
    66Tested up to: 6.9
    77Requires PHP: 7.0
    8 Stable tag: 8.6.4
     8Stable tag: 8.6.5
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    307307== Changelog ==
    308308
     309= 8.6.5 - Mar 15, 2026 =
     310
     311**Fixed**
     312 - Subscriber image upload issue in add listing form.
     313 - "Remember Me" label not showing for new users. Added default value.
     314
    309315= 8.6.4 - Mar 11, 2026 =
    310316
Note: See TracChangeset for help on using the changeset viewer.