diff --git a/config.php b/config.php index 28c2f08..c7490f4 100644 --- a/config.php +++ b/config.php @@ -293,7 +293,7 @@ class config if (is_array ($token)) { list ($id, $text) = $token; - if ($debug) echo "ARRAY : $id, $text\n"; + if ($debug) echo "ARRAY : $id (".token_name ($id)."), $text\n"; if ($foundDefault === "" && $text === "->") $foundDefault = $text; if ($id === T_DOC_COMMENT) @@ -302,7 +302,7 @@ class config if ($debug) echo "DOC_COMMENT : $text\n"; // Append the not completed lines $text = trim (substr ($text, 3, -2)); - $text = preg_replace ("/\n\s+/", " ", $text); + $text = preg_replace ("/\n\s+\*?/", " ", $text); $text = preg_replace ( "/(@(param|description|type|values|default|group|prefix))/", "\n\${1}", $text);