Skip to:
Content

BuddyPress.org

Changeset 11874


Ignore:
Timestamp:
03/02/2018 02:06:51 AM (7 years ago)
Author:
r-a-y
Message:

Attachments: Fix uploading for those on Windows/WAMP installs.

Props andrewteg, r-a-y.

Fixes #7674 (trunk).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/bp-core-attachments.php

    r11858 r11874  
    266266
    267267    // Make sure the file path is safe.
    268     if ( 0 !== validate_file( $r['image'] ) ) {
     268    if ( 1 === validate_file( $r['image'] ) ) {
    269269        return false;
    270270    }
     
    448448    $type_dir    = trailingslashit( $bp_attachments_uploads_dir['basedir'] ) . $type_subdir;
    449449
    450     if ( 0 !== validate_file( $type_dir ) || ! is_dir( $type_dir ) ) {
     450    if ( 1 === validate_file( $type_dir ) || ! is_dir( $type_dir ) ) {
    451451        return $attachment_data;
    452452    }
     
    13041304    $cover_dir    = trailingslashit( $bp_attachments_uploads_dir['basedir'] ) . $cover_subdir;
    13051305
    1306     if ( 0 !== validate_file( $cover_dir ) || ! is_dir( $cover_dir ) ) {
     1306    if ( 1 === validate_file( $cover_dir ) || ! is_dir( $cover_dir ) ) {
    13071307        // Upload error response.
    13081308        bp_attachments_json_response( false, $is_html4, array(
Note: See TracChangeset for help on using the changeset viewer.