whitespace

This commit is contained in:
Shish 2009-01-15 21:57:30 -08:00
parent 93ef3abbee
commit 17152bd0b1

View File

@ -42,7 +42,7 @@ class ExtensionInfo { // {{{
$start = $matches[1]." "; $start = $matches[1]." ";
$start_len = strlen($start); $start_len = strlen($start);
while(substr($lines[$i+1], 0, $start_len) == $start) { while(substr($lines[$i+1], 0, $start_len) == $start) {
$this->description .= substr($lines[$i+1], $start_len); $this->description .= " ".substr($lines[$i+1], $start_len);
$i++; $i++;
} }
} }
@ -51,7 +51,7 @@ class ExtensionInfo { // {{{
$start = $matches[1]." "; $start = $matches[1]." ";
$start_len = strlen($start); $start_len = strlen($start);
while(substr($lines[$i+1], 0, $start_len) == $start) { while(substr($lines[$i+1], 0, $start_len) == $start) {
$this->documentation .= substr($lines[$i+1], $start_len); $this->documentation .= " ".substr($lines[$i+1], $start_len);
$i++; $i++;
} }
} }