mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-01 14:30:32 +02:00
[ticket/15637] Fixed removing white-spaces from description line
PHPBB3-15637
This commit is contained in:
@@ -268,7 +268,8 @@ class php_exporter
|
|||||||
|
|
||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
$description_line = substr(trim($this->file_lines[$description_line_num]), strlen('* '));
|
$description_line = substr(trim($this->file_lines[$description_line_num]), strlen('*'));
|
||||||
|
$description_line = trim(str_replace("\t", " ", $description_line));
|
||||||
|
|
||||||
// Reached end of description if line is a tag
|
// Reached end of description if line is a tag
|
||||||
if (strlen($description_line) && $description_line[0] == '@')
|
if (strlen($description_line) && $description_line[0] == '@')
|
||||||
|
Reference in New Issue
Block a user