Fix syntax error in new regex formatting of referrers.

This commit is contained in:
Mitchell Krog 2017-07-10 17:52:58 +02:00
parent 0fb7b34bae
commit f3539facae

View file

@ -84,7 +84,7 @@ class Generator
$data = "";
{
foreach ($lines as $line) {
$data .= "~*\"" . preg_quote($line) . "\" \t1;\n";
$data .= "\"~*" . preg_quote($line) . "\" \t1;\n";
}
$this->writeToFile($file, $data);
}