Skip to content
Snippets Groups Projects
Unverified Commit ec8cd92f authored by Erick Hitter's avatar Erick Hitter Committed by GitHub
Browse files

Merge pull request #6 from rebeccahum/rebecca/fix_php7.3_warnings

Fix PHP 7.3 continue switch warning
parents f1a50849 44acae19
Branches
Tags
No related merge requests found
...@@ -392,7 +392,6 @@ class taxonomy_list_widget_plugin { ...@@ -392,7 +392,6 @@ class taxonomy_list_widget_plugin {
break; break;
default: default:
continue;
break; break;
} }
} }
...@@ -726,4 +725,4 @@ if( !function_exists( 'TLW_direct' ) ): ...@@ -726,4 +725,4 @@ if( !function_exists( 'TLW_direct' ) ):
echo '<!-- NOTICE: The function used to generate this dropdown list is deprecated as of version 1.0 of Taxonomy List Widget. You should update your template to use `taxonomy_list_widget` instead. -->' . $taxonomy_list_widget_plugin->render_list( $options, 'legacy_tlw' ); echo '<!-- NOTICE: The function used to generate this dropdown list is deprecated as of version 1.0 of Taxonomy List Widget. You should update your template to use `taxonomy_list_widget` instead. -->' . $taxonomy_list_widget_plugin->render_list( $options, 'legacy_tlw' );
} }
endif; endif;
?> ?>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment