Closed kevinsmith closed 13 years ago
Fatal error: Using $this when not in object context in /path_to/application/libraries/S3.php on line 383.
I found that if I change that line to read $input['type'] = self::__getMimeType($input['file']); instead, everything works.
$input['type'] = self::__getMimeType($input['file']);
Thanks! I've merged your fork.
Fatal error: Using $this when not in object context in /path_to/application/libraries/S3.php on line 383.
I found that if I change that line to read
$input['type'] = self::__getMimeType($input['file']);
instead, everything works.