[freeside-commits] freeside/rt/lib/RT Attribute_Overlay.pm, 1.1.1.7, 1.1.1.7.4.1

Mark Wells mark at wavetail.420.am
Wed Jun 29 12:06:50 PDT 2011


Update of /home/cvs/cvsroot/freeside/rt/lib/RT
In directory wavetail.420.am:/tmp/cvs-serv2182

Modified Files:
      Tag: FREESIDE_2_1_BRANCH
	Attribute_Overlay.pm 
Log Message:
fix queue renaming, #10488

Index: Attribute_Overlay.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/rt/lib/RT/Attribute_Overlay.pm,v
retrieving revision 1.1.1.7
retrieving revision 1.1.1.7.4.1
diff -u -w -d -r1.1.1.7 -r1.1.1.7.4.1
--- Attribute_Overlay.pm	31 Dec 2009 13:10:05 -0000	1.1.1.7
+++ Attribute_Overlay.pm	29 Jun 2011 19:06:47 -0000	1.1.1.7.4.1
@@ -309,12 +309,9 @@
 sub DeleteSubValue {
     my $self = shift;
     my $key = shift;
-    my %values = $self->Content();
-    delete $values{$key};
-    $self->SetContent(%values);
-
-    
-
+    my $values = $self->Content();
+    delete $values->{$key};
+    $self->SetContent($values);
 }
 
 



More information about the freeside-commits mailing list