diff options
author | ctrlaltca@gmail.com <> | 2011-05-25 09:34:54 +0000 |
---|---|---|
committer | ctrlaltca@gmail.com <> | 2011-05-25 09:34:54 +0000 |
commit | 15be96d7736550fbf097bb4dd3d4c971ef1f5cc1 (patch) | |
tree | 0ae9feb919e2303d2d034c08bce057540fe6b689 /buildscripts/PhpDocumentor/phpDocumentor/phpDocumentorTParser.inc | |
parent | 8aa27c48cd1b620e3a7dee1e2de2cdc67f4e9874 (diff) |
backported build script fixes to branch/3.1
Diffstat (limited to 'buildscripts/PhpDocumentor/phpDocumentor/phpDocumentorTParser.inc')
-rw-r--r-- | buildscripts/PhpDocumentor/phpDocumentor/phpDocumentorTParser.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/phpDocumentorTParser.inc b/buildscripts/PhpDocumentor/phpDocumentor/phpDocumentorTParser.inc index b5c5c733..24a816e9 100644 --- a/buildscripts/PhpDocumentor/phpDocumentor/phpDocumentorTParser.inc +++ b/buildscripts/PhpDocumentor/phpDocumentor/phpDocumentorTParser.inc @@ -1660,7 +1660,7 @@ class phpDocumentorTParser extends Parser } else
{
$save = $value[$i];
- $value[$i] = split("[\t ]",str_replace("\t",' ',$value[$i]));
+ $value[$i] = preg_split("/[\t ]/", str_replace("\t", ' ', $value[$i]));
$word = trim(array_shift($value[$i]));
$val = join(' ',$value[$i]);
if (trim($word) == 'internal')
@@ -2612,4 +2612,4 @@ class phpDocumentorTParser extends Parser $this->_wp->setWhitespace(false);
}
}
-?>
\ No newline at end of file +?>
|