diff --git a/changelog.txt b/changelog.txt index 9c76303376..c63d3d1cbb 100644 --- a/changelog.txt +++ b/changelog.txt @@ -2692,7 +2692,7 @@ * Pro: Fix exporting multiple entries with the bulk CSV export option * Pro: Fix Entry ID filter in views when using a comma separated list of ids * Pro: Fix 3+ level dynamic fields to hide the last field when the first is changed -* Pro: Fix apostraphes in form action logic +* Pro: Fix apostrophes in form action logic = 2.0.03 = * Use frm_clear instead of clear to minimize conflicts diff --git a/classes/controllers/FrmAppController.php b/classes/controllers/FrmAppController.php index a46dd35dad..d943f488a5 100644 --- a/classes/controllers/FrmAppController.php +++ b/classes/controllers/FrmAppController.php @@ -15,6 +15,11 @@ public static function menu() { } $menu_name = FrmAppHelper::get_menu_name(); + + if ( in_array( $menu_name, array( 'Formidable', 'Forms' ), true ) ) { + $menu_name .= wp_kses_post( FrmInboxController::get_notice_count() ); + } + add_menu_page( 'Formidable', $menu_name, 'frm_view_forms', 'formidable', 'FrmFormsController::route', self::menu_icon(), self::get_menu_position() ); }