some more fixes.
This commit is contained in:
parent
3d740cdfac
commit
81a26c6d18
1 changed files with 1 additions and 1 deletions
|
|
@ -330,7 +330,7 @@ sub processReplacements {
|
|||
$content =~ s/\Q$searchFor/$replaceWith/gs;
|
||||
}
|
||||
} else {
|
||||
my $sth = $session->db->read("select searchFor,replaceWith from replacements",$session->dbSlave);
|
||||
my $sth = $session->dbSlave->read("select searchFor,replaceWith from replacements");
|
||||
while (my ($searchFor,$replaceWith) = $sth->array) {
|
||||
$replacements->{$searchFor} = $replaceWith;
|
||||
$content =~ s/\Q$searchFor/$replaceWith/gs;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue