Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions classes/helpers/FrmAppHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -3489,7 +3489,7 @@ public static function meets_min_pro_version( $min_version ) {
}

/**
* Show a message if the browser or PHP version is below the recommendations.
* Show a message if the PHP version is below the recommendations.
*
* @since 4.0.02
* @return void
Expand All @@ -3500,12 +3500,6 @@ private static function php_version_notice() {
$message[] = __( 'The version of PHP on your server is too low. If this is not corrected, you may see issues with Formidable Forms. Please contact your web host and ask to be updated to PHP 7.0+.', 'formidable' );
}

$browser = self::get_server_value( 'HTTP_USER_AGENT' );
$is_ie = strpos( $browser, 'MSIE' ) !== false;
if ( $is_ie ) {
$message[] = __( 'You are using an outdated browser that is not compatible with Formidable Forms. Please update to a more current browser (we recommend Chrome).', 'formidable' );
}

foreach ( $message as $m ) {
?>
<div class="frm-banner-alert frm_error_style frm_previous_install">
Expand Down