projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f7506f4
)
test fix Only variables should be assigned by reference
author
Eileen McNaughton
<eileen@fuzion.co.nz>
Fri, 31 Jan 2014 05:15:54 +0000
(18:15 +1300)
committer
Eileen McNaughton
<eileen@fuzion.co.nz>
Tue, 19 Aug 2014 23:09:23 +0000
(11:09 +1200)
/var/www/drupal/sites/default/modules/civicrm/civicrm-core/CRM/ACL/BAO/ACL.php:541
CRM/ACL/BAO/ACL.php
patch
|
blob
|
blame
|
history
diff --git
a/CRM/ACL/BAO/ACL.php
b/CRM/ACL/BAO/ACL.php
index ea17556c6b1f5e29adb5e934a7d2b082a8f9a669..5fcbdc6062d8431604815fdeba1c342b3d637b2b 100644
(file)
--- a/
CRM/ACL/BAO/ACL.php
+++ b/
CRM/ACL/BAO/ACL.php
@@
-538,7
+538,7
@@
SELECT $acl.*
$rule->query($query);
while ($rule->fetch()) {
- $results[$rule->id] =
&
$rule->toArray();
+ $results[$rule->id] = $rule->toArray();
}
}