We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e22f607 + 3af05e5 commit 5319c3bCopy full SHA for 5319c3b
admin/configure.php
@@ -171,7 +171,7 @@ function civicrm_source($fileName, $lineMode = FALSE) {
171
foreach ($queries as $query) {
172
$query = trim($query);
173
if (!empty($query)) {
174
- $res = &$db->query($query);
+ $res =& $db->query($query);
175
if (PEAR::isError($res)) {
176
die("Cannot execute $query: " . $res->getMessage());
177
}
@@ -185,7 +185,7 @@ function civicrm_source($fileName, $lineMode = FALSE) {
185
$string = ereg_replace("\n\-\-[^\n]*\n", "\n", $string);
186
$string = trim($string);
187
if (!empty($string)) {
188
- $res = &$db->query($string);
+ $res =& $db->query($string);
189
190
die("Cannot execute $string: " . $res->getMessage());
191
0 commit comments