diff options
Diffstat (limited to 'buildscripts/PhpDocumentor/phpDocumentor/ParserDocBlock.inc')
-rwxr-xr-x | buildscripts/PhpDocumentor/phpDocumentor/ParserDocBlock.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/ParserDocBlock.inc b/buildscripts/PhpDocumentor/phpDocumentor/ParserDocBlock.inc index 2e29caeb..15eb7602 100755 --- a/buildscripts/PhpDocumentor/phpDocumentor/ParserDocBlock.inc +++ b/buildscripts/PhpDocumentor/phpDocumentor/ParserDocBlock.inc @@ -752,7 +752,7 @@ class parserDocBlock $rest = implode($rest,"\t"); } else $value = trim($value[0]); } - $value = preg_replace('/[^\[\]0-9\-a-zA-Z_\x7f-\xff]/', '-', $value); + $value = preg_replace('/[^\[\]0-9\-a-zA-Z_\.\x7f-\xff]/', '-', $value); $this->packagedescrip = $this->package = trim($value); if (!empty($rest)) $this->packagedescrip = $rest; } else @@ -789,7 +789,7 @@ class parserDocBlock } if (!empty($value)) { - $value = preg_replace('/[^\[\]0-9\-a-zA-Z_\x7f-\xff]/', '-', $value); + $value = preg_replace('/[^\[\]0-9\-a-zA-Z_\.\x7f-\xff]/', '-', $value); } $this->subpackage = trim($value); if (!empty($rest)) $this->subpackagedescrip = $rest; @@ -806,7 +806,7 @@ class parserDocBlock { if (!is_string($value)) $value = $value->getString(); - $value = preg_replace('/[^\[\]0-9\-a-zA-Z_\x7f-\xff]/', '-', $value); + $value = preg_replace('/[^\[\]0-9\-a-zA-Z_\.\x7f-\xff]/', '-', $value); $this->category = $value; } else { |