? 379020_pass_by_reference.patch
Index: user_quota.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/user_quota/user_quota.install,v
retrieving revision 1.6
diff -u -p -r1.6 user_quota.install
--- user_quota.install	19 Dec 2008 23:28:40 -0000	1.6
+++ user_quota.install	22 Feb 2009 15:32:30 -0000
@@ -105,8 +105,8 @@ function user_quota_uninstall() {
  */
 function user_quota_update_1() {
   $ret = array();
-  db_add_field(&$ret, 'user_quota_history', 'message', array('type' => 'text', 'size' => 'big', 'not null' => TRUE, 'default' => ''));
-  db_add_field(&$ret, 'user_quota_history', 'altering_uid', array('type' => 'int'), array('uqh_uid'));
+  db_add_field($ret, 'user_quota_history', 'message', array('type' => 'text', 'size' => 'big', 'not null' => TRUE, 'default' => ''));
+  db_add_field($ret, 'user_quota_history', 'altering_uid', array('type' => 'int'), array('uqh_uid'));
 
   return $ret;
 }
\ No newline at end of file
