removed tabs. fixed indentiation.

This commit is contained in:
messju
2003-12-19 17:18:56 +00:00
parent 6711d0cebf
commit f6bb3389f6
16 changed files with 243 additions and 243 deletions

View File

@@ -53,9 +53,9 @@ function smarty_function_counter($params, &$smarty)
if ($print) {
$retval = $counter['count'];
} else {
$retval = null;
}
} else {
$retval = null;
}
if (isset($params['skip'])) {
$counter['skip'] = $params['skip'];
@@ -69,9 +69,9 @@ function smarty_function_counter($params, &$smarty)
$counter['count'] -= $counter['skip'];
else
$counter['count'] += $counter['skip'];
return $retval;
return $retval;
}
/* vim: set expandtab: */