Skip to content

Commit 5319c3b

Browse files
committed
Merge pull request civicrm#9 from dlobo/CRM-12656
CRM-12656
2 parents e22f607 + 3af05e5 commit 5319c3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

admin/configure.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ function civicrm_source($fileName, $lineMode = FALSE) {
171171
foreach ($queries as $query) {
172172
$query = trim($query);
173173
if (!empty($query)) {
174-
$res = &$db->query($query);
174+
$res =& $db->query($query);
175175
if (PEAR::isError($res)) {
176176
die("Cannot execute $query: " . $res->getMessage());
177177
}
@@ -185,7 +185,7 @@ function civicrm_source($fileName, $lineMode = FALSE) {
185185
$string = ereg_replace("\n\-\-[^\n]*\n", "\n", $string);
186186
$string = trim($string);
187187
if (!empty($string)) {
188-
$res = &$db->query($string);
188+
$res =& $db->query($string);
189189
if (PEAR::isError($res)) {
190190
die("Cannot execute $string: " . $res->getMessage());
191191
}

0 commit comments

Comments
 (0)