Index: trunk/extensions/Deployment/includes/filesystems/FtpFilesystem.php |
— | — | @@ -541,7 +541,9 @@ |
542 | 542 | $b['year'] = $lucifer[3]; |
543 | 543 | $b['hour'] = $lucifer[4]; |
544 | 544 | $b['minute'] = $lucifer[5]; |
545 | | - $b['time'] = @mktime($lucifer[4] + (strcasecmp($lucifer[6], "PM") == 0 ? 12 : 0), $lucifer[5], 0, $lucifer[1], $lucifer[2], $lucifer[3]); |
| 545 | + wfSuppressWarnings(); |
| 546 | + $b['time'] = mktime( $lucifer[4] + (strcasecmp($lucifer[6], 'PM' ) == 0 ? 12 : 0), $lucifer[5], 0, $lucifer[1], $lucifer[2], $lucifer[3] ); |
| 547 | + wfRestoreWarnings(); |
546 | 548 | $b['am/pm'] = $lucifer[6]; |
547 | 549 | $b['name'] = $lucifer[8]; |
548 | 550 | } elseif ( !$is_windows && $lucifer = preg_split( '/[ ]/', $line, 9, PREG_SPLIT_NO_EMPTY ) ) { |