Make WordPress Core

Changeset 11810 for trunk/wp-app.php


Ignore:
Timestamp:
08/13/2009 08:31:12 PM (15 years ago)
Author:
westi
Message:

Enable the APP attachment file download to work correctly rather than just returning a lot of php notices. Fixes #10372 for trunk props mysz.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-app.php

    r11809 r11810  
    781781
    782782        $location = get_post_meta($entry['ID'], '_wp_attached_file', true);
     783        $location = get_option ('upload_path') . '/' . $location;
    783784        $filetype = wp_check_filetype($location);
    784785
     
    790791        header('Connection: close');
    791792
    792         $fp = fopen($location, "rb");
    793         while(!feof($fp)) {
    794             echo fread($fp, 4096);
    795         }
    796         fclose($fp);
     793        if ($fp = fopen($location, "rb")) {
     794            status_header('200');
     795            header('Content-Type: ' . $entry['post_mime_type']);
     796            header('Connection: close');
     797
     798            while(!feof($fp)) {
     799                echo fread($fp, 4096);
     800            }
     801
     802            fclose($fp);
     803        } else {
     804            status_header ('404');
     805        }
    797806
    798807        log_app('function',"get_file($postID)");
Note: See TracChangeset for help on using the changeset viewer.