Remove getEditTabs completely

This commit is contained in:
Colin Kuskie 2010-08-27 10:42:27 -07:00
parent 1fd17ef320
commit f4d964bd69
6 changed files with 0 additions and 96 deletions

View file

@ -593,23 +593,4 @@ sub www_viewRss {
return $self->getFeed( XML::FeedPP::RSS->new )->to_string;
}
#-------------------------------------------------------------------
=head2 getEditTabs ()
Adds an RSS tab to the Edit Tabs.
around getEditTabs => sub {
my $orig = shift;
my $self = shift;
my $tabs = $self->$orig(@_);
my $i18n = WebGUI::International->new($self->session,'AssetAspect_RssFeed');
push @{ $tabs }, ['rss', $i18n->get('RSS tab'), 1];
return $tabs;
};
=cut
1;