1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/11438] Add spaces after # comment start and before \ line breaks

PHPBB3-11438
This commit is contained in:
Joas Schilling
2013-03-16 01:18:15 +01:00
parent 2b2bbf787c
commit c50af28077
3 changed files with 38 additions and 38 deletions

View File

@@ -75,6 +75,6 @@ class phpbb_search_sphinx_config_variable
*/
function to_string()
{
return "\t" . $this->name . ' = ' . str_replace("\n", "\\\n", $this->value) . ' ' . $this->comment . "\n";
return "\t" . $this->name . ' = ' . str_replace("\n", " \\\n", $this->value) . ' ' . $this->comment . "\n";
}
}