Changeset 11873
- Timestamp:
- 03/02/2018 02:06:07 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.9/src/bp-core/bp-core-attachments.php
r11820 r11873 266 266 267 267 // Make sure the file path is safe. 268 if ( 0 !== validate_file( $r['image'] ) ) {268 if ( 1 === validate_file( $r['image'] ) ) { 269 269 return false; 270 270 } … … 448 448 $type_dir = trailingslashit( $bp_attachments_uploads_dir['basedir'] ) . $type_subdir; 449 449 450 if ( 0 !== validate_file( $type_dir ) || ! is_dir( $type_dir ) ) {450 if ( 1 === validate_file( $type_dir ) || ! is_dir( $type_dir ) ) { 451 451 return $attachment_data; 452 452 } … … 1315 1315 $cover_dir = trailingslashit( $bp_attachments_uploads_dir['basedir'] ) . $cover_subdir; 1316 1316 1317 if ( 0 !== validate_file( $cover_dir ) || ! is_dir( $cover_dir ) ) {1317 if ( 1 === validate_file( $cover_dir ) || ! is_dir( $cover_dir ) ) { 1318 1318 // Upload error response. 1319 1319 bp_attachments_json_response( false, $is_html4, array(
Note: See TracChangeset
for help on using the changeset viewer.