[Rt-commit] r17713 - in rt/3.999/trunk: .
sartak at bestpractical.com
sartak at bestpractical.com
Mon Jan 12 14:12:25 EST 2009
Author: sartak
Date: Mon Jan 12 14:12:24 2009
New Revision: 17713
Modified:
rt/3.999/trunk/ (props changed)
rt/3.999/trunk/lib/RT/View/CRUD.pm
Log:
r78592 at onn: sartak | 2009-01-12 14:12:14 -0500
Use the right invocant (OO is hard)
Modified: rt/3.999/trunk/lib/RT/View/CRUD.pm
==============================================================================
--- rt/3.999/trunk/lib/RT/View/CRUD.pm (original)
+++ rt/3.999/trunk/lib/RT/View/CRUD.pm Mon Jan 12 14:12:24 2009
@@ -59,9 +59,9 @@
template 'index.html' => page {
my $self = shift;
- render_mason(__PACKAGE__->tab_url, {
- current_tab => __PACKAGE__->current_tab,
- current_subtab => __PACKAGE__->current_subtab,
+ render_mason($self->tab_url, {
+ current_tab => $self->current_tab,
+ current_subtab => $self->current_subtab,
title => $self->object_type,
});
More information about the Rt-commit
mailing list