From c7b3186b814576ef50497a9b18e0303fc214477c Mon Sep 17 00:00:00 2001 From: pedro-mendonca Date: Fri, 18 Sep 2015 16:39:16 +0100 Subject: [PATCH] Probably a typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Is this a typo (repeated word) our does it means ´for "For" operations...` ? --- inc/class-create-archive.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/class-create-archive.php b/inc/class-create-archive.php index 3baaa605..856c3669 100644 --- a/inc/class-create-archive.php +++ b/inc/class-create-archive.php @@ -681,7 +681,7 @@ private function check_archive_filesize( $file_to_add = '' ) { $archive_size = $archive_size + $file_to_add_size; if ( $archive_size >= PHP_INT_MAX ) { - trigger_error( sprintf( __( 'If %s will be added to your backup archive, the archive will be too large for for operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each.', 'backwpup' ), $file_to_add ), E_USER_ERROR ); + trigger_error( sprintf( __( 'If %s will be added to your backup archive, the archive will be too large for operations with this PHP Version. You might want to consider splitting the backup job in multiple jobs with less files each.', 'backwpup' ), $file_to_add ), E_USER_ERROR ); return FALSE; }