Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions classes/controllers/FrmAppController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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() );
}

Expand Down