Completed
Pull Request — master (#912)
by
unknown
10:47
created
caffeinated/admin/extend/about/templates/whats_new.template.php 1 patch
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -4,48 +4,48 @@
 block discarded – undo
4 4
     <?php // $type = 'minor'; ?>
5 5
     <?php $type = 'major'; ?>
6 6
     <p><?php
7
-        printf(
8
-            __('<strong>Version %1$s</strong> is a %2$s release.', 'event_espresso'),
9
-            EVENT_ESPRESSO_VERSION,
10
-            $type
11
-        ); ?>
7
+		printf(
8
+			__('<strong>Version %1$s</strong> is a %2$s release.', 'event_espresso'),
9
+			EVENT_ESPRESSO_VERSION,
10
+			$type
11
+		); ?>
12 12
         <?php
13
-        $ver = explode('.', EVENT_ESPRESSO_VERSION);
14
-        array_pop($ver);
15
-        $ver = implode('.', $ver);
16
-        ?>
13
+		$ver = explode('.', EVENT_ESPRESSO_VERSION);
14
+		array_pop($ver);
15
+		$ver = implode('.', $ver);
16
+		?>
17 17
         <?php printf(
18
-            __('For more information, see <a href="%s" target="_blank">the release notes</a>.', 'event_espresso'),
19
-            'http://eventespresso.com/wiki/ee4-changelog/#' . $ver
20
-        ); ?>
18
+			__('For more information, see <a href="%s" target="_blank">the release notes</a>.', 'event_espresso'),
19
+			'http://eventespresso.com/wiki/ee4-changelog/#' . $ver
20
+		); ?>
21 21
     </p>
22 22
 </div>
23 23
 
24 24
 <div class="changelog">
25 25
     <?php
26
-    // maintenance mode on?
27
-    if (EE_Maintenance_Mode::instance()->level() == EE_Maintenance_Mode::level_2_complete_maintenance) {
28
-        ?>
26
+	// maintenance mode on?
27
+	if (EE_Maintenance_Mode::instance()->level() == EE_Maintenance_Mode::level_2_complete_maintenance) {
28
+		?>
29 29
         <div class="ee-attention">
30 30
             <h2 class="ee-maintenance-mode-callout"><?php
31
-                _e('Event Espresso is in full maintenance mode.', 'event_espresso');
32
-                ?></h2>
31
+				_e('Event Espresso is in full maintenance mode.', 'event_espresso');
32
+				?></h2>
33 33
             <p>
34 34
                 <?php
35
-                printf(
36
-                    __(
37
-                        'A previous version of Event Espresso has detected. But before anything else can happen, we need to know whether or not to migrate (copy over) your existing event data so that it can be utilized by EE4. For more instructions on what to do, please visit the %sEvent Espresso Maintenance%s page.',
38
-                        'event_espresso'
39
-                    ),
40
-                    '<a href="admin.php?page=espresso_maintenance_settings">',
41
-                    '</a>'
42
-                );
43
-                ?>
35
+				printf(
36
+					__(
37
+						'A previous version of Event Espresso has detected. But before anything else can happen, we need to know whether or not to migrate (copy over) your existing event data so that it can be utilized by EE4. For more instructions on what to do, please visit the %sEvent Espresso Maintenance%s page.',
38
+						'event_espresso'
39
+					),
40
+					'<a href="admin.php?page=espresso_maintenance_settings">',
41
+					'</a>'
42
+				);
43
+				?>
44 44
             </p>
45 45
         </div>
46 46
         <?php
47
-    }
48
-    ?>
47
+	}
48
+	?>
49 49
 
50 50
     <h2 class="about-headline-callout">Updates &amp; Fixes in EE 4.10</h2>
51 51
     <p>This release brought many background updates/improvements to existing core features, and support for many new
Please login to merge, or discard this patch.