Completed
Pull Request — master (#2443)
by
unknown
41s
created
classes/views/test-mode/pagination-buttons.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 $number_of_pages_to_show = 4; // This is hard coded. In Lite, there is only ever a single page.
13 13
 ?>
14 14
 <div id="frm_test_mode_pagination">
15
-	<?php for ( $i = 1; $i <= $number_of_pages_to_show; $i++ ) : ?>
15
+	<?php for ( $i = 1; $i <= $number_of_pages_to_show; $i ++ ) : ?>
16 16
 		<input type="button" class="frm_noallow <?php echo $i === 1 ? 'frm_test_mode_active_page' : ''; ?>" value="<?php echo esc_attr( $i ); ?>"/>
17 17
 	<?php endfor; ?>
18 18
 </div>
Please login to merge, or discard this patch.
classes/controllers/FrmTestModeController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
 	 */
60 60
 	private static function get_testing_mode_container() {
61 61
 		return FrmAppHelper::clip(
62
-			function () {
62
+			function() {
63 63
 				$enabled                              = function_exists( 'load_formidable_test_mode' );
64 64
 				$roles                                = self::get_roles();
65 65
 				$pagination                           = apply_filters( 'frm_test_mode_pagination_buttons', false );
Please login to merge, or discard this patch.