Fix for PHP 7.3 - deprecated continue in switch

This commit is contained in:
Deon George 2019-05-14 15:00:28 +10:00
parent 3c0ca27477
commit 7b1f6b5132
1 changed files with 1 additions and 1 deletions

View File

@ -321,7 +321,7 @@ class QueryRender extends PageRender {
if (! $results) {
echo _('Search returned no results');
continue;
continue 2;
}
printf('<form action="cmd.php" method="post" id="massform_%s">',$counter);