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