~ubuntu-branches/ubuntu/maverick/haxe/maverick

« back to all changes in this revision

Viewing changes to haxe/std/php/Web.hx

  • Committer: Bazaar Package Importer
  • Author(s): Jens Peter Secher
  • Date: 2010-01-31 23:08:43 UTC
  • mfrom: (5.2.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100131230843-1cxte2x20ypk9c25
Tags: 1:2.5-1
New upstream version, taken from new upstream subversion repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
310
310
                                        case 1: throw "The uploaded file exceeds the max size of " + untyped __call__('ini_get', 'upload_max_filesize');
311
311
                                        case 2: throw "The uploaded file exceeds the max file size directive specified in the HTML form (max is" + untyped __call__('ini_get', 'post_max_size') + ")";
312
312
                                        case 3: throw "The uploaded file was only partially uploaded";
313
 
                                        case 4: throw "No file was uploaded";
 
313
                                        case 4: continue; // No file was uploaded
314
314
                                        case 6: throw "Missing a temporary folder";
315
315
                                        case 7: throw "Failed to write file to disk";
316
316
                                        case 8: throw "File upload stopped by extension";