Changeset 11304
- Timestamp:
- 05/12/2009 05:02:34 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/file.php
r11283 r11304 240 240 '', 241 241 __( "Missing a temporary folder." ), 242 __( "Failed to write file to disk." )); 242 __( "Failed to write file to disk." ), 243 __( "File upload stopped by extension." )); 243 244 244 245 // All tests are on by default. Most can be turned off by $override[{test_name}] = false; … … 341 342 // Courtesy of php.net, the strings that describe the error indicated in $_FILES[{form field}]['error']. 342 343 $upload_error_strings = array( false, 343 __( "The file exceeds the <code>upload_max_filesize</code> directive in <code>php.ini</code>." ), 344 __( "The file exceeds the <em>MAX_FILE_SIZE</em> directive that was specified in the HTML form." ), 345 __( "The file was only partially uploaded." ), 346 __( "No file was sent." ), 344 __( "The uploaded file exceeds the <code>upload_max_filesize</code> directive in <code>php.ini</code>." ), 345 __( "The uploaded file exceeds the <em>MAX_FILE_SIZE</em> directive that was specified in the HTML form." ), 346 __( "The uploaded file was only partially uploaded." ), 347 __( "No file was uploaded." ), 348 '', 347 349 __( "Missing a temporary folder." ), 348 __( "Failed to write file to disk." )); 350 __( "Failed to write file to disk." ), 351 __( "File upload stopped by extension." )); 349 352 350 353 // All tests are on by default. Most can be turned off by $override[{test_name}] = false;
Note: See TracChangeset
for help on using the changeset viewer.