diff --git a/inc/roots-actions.php b/inc/roots-actions.php index a0b43b7..671c565 100644 --- a/inc/roots-actions.php +++ b/inc/roots-actions.php @@ -111,12 +111,7 @@ function roots_get_stylesheets() { } function stylesheet_link_tag($file, $tabs = 0, $newline = true) { - $i = 0; - $indent = ''; - while ($i < $tabs) { - $indent .= "\t"; - $i++; - } + $indent = str_repeat("\t", $tabs); return $indent . '' . ($newline ? "\n" : ""); }