]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
stop str_repeat from whinging about being run with repeat value of 0. :P
authorBrion Vibber <brion@pobox.com>
Fri, 8 Oct 2010 00:01:14 +0000 (17:01 -0700)
committerBrion Vibber <brion@pobox.com>
Fri, 8 Oct 2010 00:01:14 +0000 (17:01 -0700)
scripts/dumpschema.php

index 818a4d5eae4cbe4ee567ca8554e3da8b9f3cc5b4..20812fe5b830f2b4e40a7d2a5d0aea2edc4b94d0 100644 (file)
@@ -32,10 +32,10 @@ function indentOptions($indent)
 {
     $cutoff = 3;
     if ($indent < $cutoff) {
-        $space = str_repeat(' ', $indent * 4);
+        $space = $indent ? str_repeat(' ', $indent * 4) : '';
         $sep = ",";
         $lf = "\n";
-        $endspace = "$lf" . str_repeat(' ', ($indent - 1) * 4);
+        $endspace = "$lf" . ($indent ? str_repeat(' ', ($indent - 1) * 4) : '');
     } else {
         $space = '';
         $sep = ", ";