Fixed a bug in FTP upload hook, other minor improvements

* Ensure we have write permissions on any newly uploaded files by FTP
* Don't silence warnings in moveFileToStor()
* Reduced the FTP upload max retry count
* Log E_NOTICE and E_WARNING levels to Sentry
This commit is contained in:
Albert Santoni 2015-03-24 14:56:03 -04:00
parent bc2acaea51
commit d1b28fd564
4 changed files with 9 additions and 3 deletions

View file

@ -138,7 +138,9 @@ class Logging {
switch($err['type'])
{
case E_ERROR:
case E_WARNING:
case E_PARSE:
case E_NOTICE:
case E_CORE_ERROR:
case E_CORE_WARNING:
case E_COMPILE_ERROR: