-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix admin notice filter * Update version * Fix formatting
- Loading branch information
Showing
5 changed files
with
64 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
* Plugin Name: Better Font Awesome | ||
* Plugin URI: http://wordpress.org/plugins/better-font-awesome | ||
* Description: The ultimate Font Awesome icon plugin for WordPress. | ||
* Version: 1.7.0 | ||
* Version: 1.7.1 | ||
* Author: Mickey Kay | ||
* Author URI: [email protected] | ||
* License: GPLv2+ | ||
|
@@ -287,7 +287,7 @@ private function initialize_options( $option_name ) { | |
private function initialize_better_font_awesome_library( $options ) { | ||
|
||
// Hide admin notices if setting is checked. | ||
if ( isset( $options['hide_admin_notices'] ) ) { | ||
if ( true == $options['hide_admin_notices'] ) { | ||
add_filter( 'bfa_show_errors', '__return_false' ); | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters