diff options
Diffstat (limited to 'example/index.php')
-rw-r--r-- | example/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/index.php b/example/index.php index a0aa03c..3c7c5ba 100644 --- a/example/index.php +++ b/example/index.php @@ -34,10 +34,10 @@ $ste->register_tag("repeat", $output = ""; if(!is_numeric($params["n"])) throw new ste\RuntimeError("Sorry, but parameter n must be a number..."); - + for($i = 0; $i < $params["n"]; ++$i) $output .= $sub($ste); - + return $output; } ); |