|
@@ -110,7 +110,7 @@
|
|
$output = preg_replace_callback(static::$regex['existelse'], function($matches){
|
|
$output = preg_replace_callback(static::$regex['existelse'], function($matches){
|
|
$output = "<?php if(isset(\$data[".var_export($matches[1], true)."])): ?>";
|
|
$output = "<?php if(isset(\$data[".var_export($matches[1], true)."])): ?>";
|
|
$output .= static::compile($matches[2]);
|
|
$output .= static::compile($matches[2]);
|
|
- $output .= "<php else: ?>";
|
|
|
|
|
|
+ $output .= "<?php else: ?>";
|
|
$output .= static::compile($matches[3]);
|
|
$output .= static::compile($matches[3]);
|
|
$output .= "<?php endif; ?>";
|
|
$output .= "<?php endif; ?>";
|
|
return $output;
|
|
return $output;
|
|
@@ -131,6 +131,7 @@
|
|
$output = "<?php if(isset(\$data[".var_export($matches[1], true)."])): ?>";
|
|
$output = "<?php if(isset(\$data[".var_export($matches[1], true)."])): ?>";
|
|
$output .= static::compile($matches[2]);
|
|
$output .= static::compile($matches[2]);
|
|
$output .= "<?php endif; ?>";
|
|
$output .= "<?php endif; ?>";
|
|
|
|
+ return $output;
|
|
}, $output);
|
|
}, $output);
|
|
}
|
|
}
|
|
],
|
|
],
|