Index: copyright.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/copyright/Attic/copyright.module,v
retrieving revision 1.13.4.21
diff -u -r1.13.4.21 copyright.module
--- copyright.module	5 Jun 2007 08:03:29 -0000	1.13.4.21
+++ copyright.module	17 Jun 2007 12:43:09 -0000
@@ -570,7 +570,7 @@
         $site_default = variable_get('copyright-default', 1);
         $user_default = copyright_user_get_default($user->uid);
 
-        foreach ($licenses as $cpyid => &$license) {
+        foreach ($licenses as $cpyid => $license) {
           $notices = array();
           if ($cpyid == $site_default) {
             $notices[] = t('site default');
@@ -583,7 +583,7 @@
           }
 
           if (count($notices) > 0) {
-            $license .= ' ('. implode(', ', $notices) .')';
+            $licenses[$cpyid] .= ' ('. implode(', ', $notices) .')';
           }
         }
     
