/home/arranoyd/eventrify/wp-content/themes/uptime/inc/content-copyright.php
<?php
	$search = array(
		'*copy*',
		'*current_year*'
	);
	
	$replace = array(
		'&copy;',
		date( 'Y' )
	);
	
	$copyright = str_replace( 
		$search, 
		$replace, 
		get_theme_mod( 'footer_copyright', '*copy* *current_year* Leap. By <a href="http://www.tommusrhodus.com">TommusRhodus</a>' ) 
	);
?>

<small class="text-muted"><?php echo wp_kses_post( $copyright ); ?></small>