Code Duplication    Length = 12-12 lines in 2 locations

modules/subscriptions/views.php 2 locations

@@ 328-339 (lines=12) @@
325
					if ( ! $show_only_email_and_button ) {
326
						echo wpautop( $subscribe_logged_in );
327
					}
328
					if ( $show_subscribers_total && $subscribers_total ) {
329
						?>
330
						<div class="jetpack-subscribe-count">
331
							<p>
332
							<?php
333
							/* translators: %s: number of folks following the blog */
334
							echo esc_html( sprintf( _n( 'Join %s other follower', 'Join %s other followers', $subscribers_total, 'jetpack' ), number_format_i18n( $subscribers_total ) ) );
335
							?>
336
							</p>
337
						</div>
338
						<?php
339
					}
340
					?>
341
				<?php else : ?>
342
					<?php
@@ 346-357 (lines=12) @@
343
					if ( ! $show_only_email_and_button ) {
344
						echo wpautop( $subscribe_text );
345
					}
346
					if ( $show_subscribers_total && $subscribers_total ) {
347
						?>
348
						<div class="jetpack-subscribe-count">
349
							<p>
350
							<?php
351
							/* translators: %s: number of folks following the blog */
352
							echo esc_html( sprintf( _n( 'Join %s other follower', 'Join %s other followers', $subscribers_total, 'jetpack' ), number_format_i18n( $subscribers_total ) ) );
353
							?>
354
							</p>
355
						</div>
356
						<?php
357
					}
358
					$email_field_id = 'subscribe-field' . self::$instance_count > 1
359
						? '-' . self::$instance_count
360
						: '';