Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
bugfix: Fatal error: 'break' operator accepts only positive numbers
  • Loading branch information
jakoch committed Jun 30, 2013
1 parent a914dab commit ff74e8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.de.php
Expand Up @@ -363,7 +363,7 @@ function outputFeedContent()
echo '<span style="font-size: 11px;">' . htmlspecialchars($items->pubDate) . '</span><br /></p>';
if($i == 10)
{
break(0);
break;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion index.en.php
Expand Up @@ -344,7 +344,7 @@ function outputFeedContent()
echo '<span style="font-size: 11px;">' . htmlspecialchars($items->pubDate) . '</span><br /></p>';
if($i == 10)
{
break(0);
break;
}
}
}
Expand Down

0 comments on commit ff74e8c

Please sign in to comment.