Merge pull request #15818 from colemanw/fields
[civicrm-core.git] / CRM / Core / Smarty / plugins / compiler.continue.php
1 <?php
2
3 /**
4 * Skip remaining logic in the current iteration of a loop.
5 * @param $contents
6 * @param $smarty
7 * @return string
8 */
9 function smarty_compiler_continue($contents, &$smarty) {
10 return 'continue;';
11 }