[Jifty-commit] r7031 - jifty/branches/webservices-in-td/lib/Jifty/Web

Jifty commits jifty-commit at lists.jifty.org
Wed May 13 14:47:34 EDT 2009


Author: alexmv
Date: Wed May 13 14:47:32 2009
New Revision: 7031

Modified:
   jifty/branches/webservices-in-td/lib/Jifty/Web/Services.pm

Log:
Complete stripkids -> _stripkids renaming

Modified: jifty/branches/webservices-in-td/lib/Jifty/Web/Services.pm
==============================================================================
--- jifty/branches/webservices-in-td/lib/Jifty/Web/Services.pm	(original)
+++ jifty/branches/webservices-in-td/lib/Jifty/Web/Services.pm	Wed May 13 14:47:32 2009
@@ -163,10 +163,10 @@
         return undef;
     }
     elsif ( ref $top eq 'HASH' ) {
-        $top->{$_} = stripkids( $top->{$_} ) foreach keys %$top;
+        $top->{$_} = _stripkids( $top->{$_} ) foreach keys %$top;
     }
     elsif ( ref $top eq 'ARRAY' ) {
-        push @$top, stripkids( $_ ) foreach splice @$top;
+        push @$top, _stripkids( $_ ) foreach splice @$top;
     }
     return $top;
 }


More information about the Jifty-commit mailing list