https://github.com/PressForward/pressforward
Raw File
Tip revision: 438629d15ed9706ebcddebfdd2eca2c39ed49947 authored by Boone B Gorges on 23 February 2023, 18:52:05 UTC
Fix strpos() logic in PF_Readability::process_in_oembeds().
Tip revision: 438629d
tab-alerts.tpl.php
<?php
/**
 * Template for Alerts tab.
 *
 * @package PressForward
 */

?>

<?php if ( current_user_can( 'edit_posts' ) ) : ?>
	<div class="alert-box postbox">
		<div class="handlediv" title="<?php esc_attr_e( 'Click to toggle', 'pf' ); ?>"><br></div>
		<h3 class="hndle"><span><?php esc_html_e( 'Feed Problems', 'pf' ); ?></span></h3>
		<div class="inside">
			<?php
			pressforward( 'admin.menu' )->pf_alert_displayer();
			?>
		</div>
	</div>
<?php endif; ?>

<form method="post" action="options.php" enctype="multipart/form-data">
	<?php settings_fields( PF_SLUG . '_feedlist_group' ); ?>
</form>
back to top