X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Flib%2FRT%2FLink_Overlay.pm;h=c870ee4c4ee2180a661548c4c3f722095920b493;hb=b4060ee8879f433c3cdd4a2b6bef55f136863a5f;hp=28143cfeb7cb6669ae0f44a172738283a1634188;hpb=673b9a458d9138523026963df6fa3b4683e09bae;p=freeside.git diff --git a/rt/lib/RT/Link_Overlay.pm b/rt/lib/RT/Link_Overlay.pm index 28143cfeb..c870ee4c4 100644 --- a/rt/lib/RT/Link_Overlay.pm +++ b/rt/lib/RT/Link_Overlay.pm @@ -315,7 +315,7 @@ Returns true if the base of this link is a local ticket sub BaseIsLocal { my $self = shift; - $RT::Logger->crit("Link::BaseIsLocal is deprecated in favor of Link->BaseURI->IsLocal"); + $RT::Logger->crit("Link::BaseIsLocal is deprecated in favor of Link->BaseURI->IsLocal at (". join(":",caller).")"); return $self->BaseURI->IsLocal; } @@ -331,7 +331,7 @@ Returns true if the target of this link is a local ticket sub TargetIsLocal { my $self = shift; - $RT::Logger->crit("Link::BaseIsLocal is deprecated in favor of Link->BaseURI->IsLocal"); + $RT::Logger->crit("Link::BaseIsLocal is deprecated in favor of Link->BaseURI->IsLocal at (". join(":",caller).")"); return $self->TargetURI->IsLocal; } @@ -348,7 +348,7 @@ Returns an HTTP url to access the base of this link sub BaseAsHREF { my $self = shift; - $RT::Logger->crit("Link::BaseAsHREF deprecated in favor of ->BaseURI->AsHREF"); + $RT::Logger->crit("Link::BaseAsHREF deprecated in favor of ->BaseURI->AsHREF at (". join(":",caller).")"); return $self->BaseURI->HREF; } # }}} @@ -363,7 +363,7 @@ return an HTTP url to access the target of this link sub TargetAsHREF { my $self = shift; - $RT::Logger->crit("Link::TargetAsHREF deprecated in favor of ->TargetURI->AsHREF"); + $RT::Logger->crit("Link::TargetAsHREF deprecated in favor of ->TargetURI->AsHREF at (". join(":",caller).")"); return $self->TargetURI->HREF; } # }}}