Changeset 1551


Ignore:
Timestamp:
Sep 20, 2006, 11:20:34 PM (18 years ago)
Author:
rub
Message:

Resolved Issue ID 0000544:

o Error on download HD picture

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/branch-1_6/action.php

    r1190 r1551  
    5959  header("Content-Transfer-Encoding: binary");
    6060  header("Content-Length: ".@filesize($filename));
    61   set_time_limit(0);
     61  // Looking at the safe_mode configuration for execution time
     62  if (ini_get('safe_mode') == 0)
     63  {
     64    @set_time_limit(0);
     65  }
     66
    6267  @readfile("$filename") or die("File not found.");
    6368}
Note: See TracChangeset for help on using the changeset viewer.