From c4b309f4344377953c8a6449ab0a83429f9ba511 Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Tue, 15 Jun 2010 05:33:43 -0500 Subject: [PATCH] make fixUrl work when lots of recursion is required --- lib/WebGUI/Asset.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/WebGUI/Asset.pm b/lib/WebGUI/Asset.pm index e0cf0735e..0ded814f5 100644 --- a/lib/WebGUI/Asset.pm +++ b/lib/WebGUI/Asset.pm @@ -771,7 +771,8 @@ sub fixUrl { $parts[0] .= "2"; } $url = join(".",@parts); - $url = $self->fixUrl($url); + @_ = ($self, $url); + goto $self->can('fixUrl'); } return $url; }