Merge pull request #716 from daylerees/feature/forelse-fix

Fix for @forelse only matching $vars.
This commit is contained in:
Shawn McCool 2012-05-26 04:57:36 -07:00
commit 23f469ae53
1 changed files with 2 additions and 2 deletions

View File

@ -213,12 +213,12 @@ protected static function compile_forelse($value)
foreach ($matches[0] as $forelse)
{
preg_match('/\$[^\s]*/', $forelse, $variable);
preg_match('/\s*\(\s*(\S*)\s/', $forelse, $variable);
// Once we have extracted the variable being looped against, we can add
// an if statement to the start of the loop that checks if the count
// of the variable being looped against is greater than zero.
$if = "<?php if (count({$variable[0]}) > 0): ?>";
$if = "<?php if (count({$variable[1]}) > 0): ?>";
$search = '/(\s*)@forelse(\s*\(.*\))/';