diff --git a/parts/library.php b/parts/library.php index 9953bfc..6173dd2 100644 --- a/parts/library.php +++ b/parts/library.php @@ -29,22 +29,22 @@ $result .= '' . $name . ' '; $result .= '' . $pct . '% Complete'; for ( ; $i >= 20 ; $i -= 20 ) { - $result .= ''; + $result .= ' '; } for ( ; $i >= 10 ; $i -= 10 ) { - $result .= ''; + $result .= ' '; } for ( ; $i >= 2 ; $i -= 2 ) { - $result .= ''; + $result .= ' '; } for ( ; $j >= 20 ; $j -= 20 ) { - $result .= ''; + $result .= ' '; } for ( ; $j >= 10 ; $j -= 10 ) { - $result .= ''; + $result .= ' '; } for ( ; $j >= 2 ; $j -= 2 ) { - $result .= ''; + $result .= ' '; } $result .= ' ' . $comments . ''; echo $result;