Skip to content

Commit 54cfa4f

Browse files
author
Florian Schaal
committed
Apply 1 suggestion(s) to 1 file(s)
1 parent 4c2cca6 commit 54cfa4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/plugins-available/apache2_plugin.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function directive_snippets($event_name, $data) {
107107
$affected_snippets = $app->db->queryAllRecords('SELECT directive_snippets_id FROM directive_snippets WHERE required_php_snippets RLIKE(?) AND type = ?', $rlike, 'apache');
108108
if(is_array($affected_snippets) && !empty($affected_snippets)) {
109109
foreach($affected_snippets as $snippet) $sql_in[] = $snippet['directive_snippets_id'];
110-
$$affected_sites = $app->db->queryAllRecords('SELECT domain_id FROM web_domain WHERE server_id = ? AND directive_snippets_id IN ?', $conf['server_id'], $sql_in);
110+
$affected_sites = $app->db->queryAllRecords('SELECT domain_id FROM web_domain WHERE server_id = ? AND directive_snippets_id IN ?', $conf['server_id'], $sql_in);
111111
}
112112
}
113113
if($snippet['type'] == 'apache') $affected_sites = $app->db->queryAllRecords('SELECT domain_id FROM web_domain WHERE server_id = ? AND directive_snippets_id = ?', $conf['server_id'], $snippet['directive_snippets_id']);

0 commit comments

Comments
 (0)