Completed
Branch db-repair-tool (c66dc8)
by
unknown
15:24 queued 07:29
created
modules/batch/templates/batch_runner.template.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 <div class="ee-batch-runner__wrapper ee-admin-container">
6 6
     <div class="padding">
7
-        <h1><?php esc_html_e('Running Batch Job...', 'event_espresso');?></h1>
7
+        <h1><?php esc_html_e('Running Batch Job...', 'event_espresso'); ?></h1>
8 8
         <div class="progress-bar-wrapper">
9 9
             <div id='batch-progress' class='progress-responsive'></div>
10 10
             <label><?php esc_html_e('progress', 'event_espresso'); ?></label>
Please login to merge, or discard this patch.
modules/batch/templates/batch_wrapper.template.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 // just makes the template conditional on the batch request type
4 4
 $batch_request_type = EED_Batch::instance()->batch_request_type();
5 5
 if ($batch_request_type == EED_Batch::batch_job) {
6
-    require('batch_runner.template.php');
6
+	require('batch_runner.template.php');
7 7
 } elseif ($batch_request_type == EED_Batch::batch_file_job) {
8
-    require('batch_file_runner.template.php');
8
+	require('batch_file_runner.template.php');
9 9
 }
Please login to merge, or discard this patch.
modules/batch/templates/batch_file_runner.template.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@  discard block
 block discarded – undo
2 2
 
3 3
 $job_step_response = EED_Batch::instance()->job_step_response();
4 4
 $filename = $job_step_response instanceof EventEspressoBatchRequest\Helpers\JobStepResponse
5
-    ? EEH_File::get_filename_from_filepath($job_step_response->job_parameters()->extra_datum('filepath'))
6
-    : esc_html__('Unknown', 'event_espresso');
5
+	? EEH_File::get_filename_from_filepath($job_step_response->job_parameters()->extra_datum('filepath'))
6
+	: esc_html__('Unknown', 'event_espresso');
7 7
 ?>
8 8
 
9 9
 <div class='ee-batch-runner__wrapper ee-admin-container'>
@@ -15,9 +15,9 @@  discard block
 block discarded – undo
15 15
         <br/>
16 16
         <div id='message-area' class='ee-status-outline ee-status-bg--info'>
17 17
             <?php esc_html_e(
18
-                'The file will download automatically when done, and then you will be redirected.',
19
-                'event_espresso'
20
-            ); ?>
18
+				'The file will download automatically when done, and then you will be redirected.',
19
+				'event_espresso'
20
+			); ?>
21 21
         </div>
22 22
         <div id='progress-area'></div>
23 23
     </div>
Please login to merge, or discard this patch.