Merge pull request #4027 from magnolia61/(CRM-15223)-Include-gender-and-age-in-(const...
[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 */
6 function smarty_compiler_continue($contents, &$smarty){
7 return 'continue;';
8 }