Code Duplication    Length = 7-11 lines in 2 locations

views/admin/my-jetpack-page.php 1 location

@@ 133-143 (lines=11) @@
130
									<input type="submit" disabled="disabled" name="jetpack-set-master-user" id="save-primary-btn" class="button" value="Save" title="<?php esc_attr_e( 'Set the primary account holder', 'jetpack' ); ?>"/>
131
								<# } #>
132
							</form>
133
						<?php else : ?>
134
							<p>{{{ data.masterUser.masterUser.data.user_login }}} <?php echo $primary_text; ?></p>
135
							<p><em><?php
136
								echo wp_kses(
137
									sprintf(
138
										__( 'Create <a href="%s" title="Go to Users → All Users">additional Administrators</a> to change primary user.', 'jetpack' ),
139
										admin_url( 'users.php' ) ),
140
									array( 'a' => array( 'href' => true, 'title' => true ) )
141
								);
142
								?></p>
143
						<?php endif; ?>
144
					</div>
145
					<div class="j-col j-lrg-6 j-md-6 j-sm-12">
146
						<h4><?php _e( 'Disconnect Jetpack', 'jetpack' ); ?></h4>

modules/module-info.php 1 location

@@ 851-857 (lines=7) @@
848
			);
849
		?></p>
850
851
	<?php else : ?>
852
853
			<p><?php esc_html_e( 'Once activated, you can selectively activate the content types you need at Settings &rarr; Writing &rarr; Your Custom Content Types.'); ?></p>
854
855
            <p><?php echo wp_kses( sprintf( __( 'Full details can be found on the <a href="%s" title="Custom Content Types support page" target="_blank">Custom Content Types support page</a>.', 'jetpack' ), 'https://jetpack.me/support/custom-content-types/' ), array( 'a' => array( 'href' => true, 'title' => true, 'target' => true ) ) ); ?></p>
856
857
	<?php endif;
858
}
859
add_action( 'jetpack_module_more_info_custom-content-types', 'jetpack_custom_content_types_more_info' );
860