Changeset 3482938
- Timestamp:
- 03/15/2026 07:49:19 AM (13 days ago)
- Location:
- directorist
- Files:
-
- 10 edited
- 1 copied
-
tags/8.6.5 (copied) (copied from directorist/trunk)
-
tags/8.6.5/config.php (modified) (1 diff)
-
tags/8.6.5/directorist-base.php (modified) (1 diff)
-
tags/8.6.5/includes/model/Account.php (modified) (1 diff)
-
tags/8.6.5/includes/rest-api/Version1/class-temporary-media-upload-controller.php (modified) (1 diff)
-
tags/8.6.5/readme.txt (modified) (2 diffs)
-
trunk/config.php (modified) (1 diff)
-
trunk/directorist-base.php (modified) (1 diff)
-
trunk/includes/model/Account.php (modified) (1 diff)
-
trunk/includes/rest-api/Version1/class-temporary-media-upload-controller.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
directorist/tags/8.6.5/config.php
r3480392 r3482938 2 2 // Plugin version. 3 3 if ( ! defined( 'ATBDP_VERSION' ) ) { 4 define( 'ATBDP_VERSION', '8.6. 4' );4 define( 'ATBDP_VERSION', '8.6.5' ); 5 5 } 6 6 // Plugin Folder Path. -
directorist/tags/8.6.5/directorist-base.php
r3480392 r3482938 4 4 * Plugin URI: https://wpwax.com 5 5 * Description: A comprehensive solution to create professional looking directory site of any kind. Like Yelp, Foursquare, etc. 6 * Version: 8.6. 46 * Version: 8.6.5 7 7 * Author: wpWax 8 8 * Author URI: https://wpwax.com -
directorist/tags/8.6.5/includes/model/Account.php
r3338419 r3482938 161 161 'active_form' => $active_form, 162 162 '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' ) ), 164 164 ]; 165 165 -
directorist/tags/8.6.5/includes/rest-api/Version1/class-temporary-media-upload-controller.php
r3478925 r3482938 55 55 } 56 56 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 }64 57 65 58 return true; -
directorist/tags/8.6.5/readme.txt
r3480392 r3482938 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.0 8 Stable tag: 8.6. 48 Stable tag: 8.6.5 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 307 307 == Changelog == 308 308 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 309 315 = 8.6.4 - Mar 11, 2026 = 310 316 -
directorist/trunk/config.php
r3480392 r3482938 2 2 // Plugin version. 3 3 if ( ! defined( 'ATBDP_VERSION' ) ) { 4 define( 'ATBDP_VERSION', '8.6. 4' );4 define( 'ATBDP_VERSION', '8.6.5' ); 5 5 } 6 6 // Plugin Folder Path. -
directorist/trunk/directorist-base.php
r3480392 r3482938 4 4 * Plugin URI: https://wpwax.com 5 5 * Description: A comprehensive solution to create professional looking directory site of any kind. Like Yelp, Foursquare, etc. 6 * Version: 8.6. 46 * Version: 8.6.5 7 7 * Author: wpWax 8 8 * Author URI: https://wpwax.com -
directorist/trunk/includes/model/Account.php
r3338419 r3482938 161 161 'active_form' => $active_form, 162 162 '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' ) ), 164 164 ]; 165 165 -
directorist/trunk/includes/rest-api/Version1/class-temporary-media-upload-controller.php
r3478925 r3482938 55 55 } 56 56 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 }64 57 65 58 return true; -
directorist/trunk/readme.txt
r3480392 r3482938 6 6 Tested up to: 6.9 7 7 Requires PHP: 7.0 8 Stable tag: 8.6. 48 Stable tag: 8.6.5 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 307 307 == Changelog == 308 308 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 309 315 = 8.6.4 - Mar 11, 2026 = 310 316
Note: See TracChangeset
for help on using the changeset viewer.