From 44acae19ee1c1f1e330fcfb22de8a0f18ac977bd Mon Sep 17 00:00:00 2001 From: Rebecca Hum <rebecca.hum@automattic.com> Date: Fri, 25 Jan 2019 16:33:50 -0700 Subject: [PATCH] Fix PHP 7.3 continue switch warning --- taxonomy-list-widget.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/taxonomy-list-widget.php b/taxonomy-list-widget.php index cd88d9e..1992cf3 100644 --- a/taxonomy-list-widget.php +++ b/taxonomy-list-widget.php @@ -392,7 +392,6 @@ class taxonomy_list_widget_plugin { break; default: - continue; break; } } @@ -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' ); } endif; -?> \ No newline at end of file +?> -- GitLab