Don't need www_edit anymore, either.

This commit is contained in:
Colin Kuskie 2011-08-04 16:53:30 -07:00
parent 32a3225daa
commit fe2aa2fe87

View file

@ -933,26 +933,6 @@ sub viewTemplateVariables {
}
#-------------------------------------------------------------------
=head2 www_edit ( )
Web facing method which is the default edit page. Unless the method needs
special handling or formatting, it does not need to be included in
the module.
Overridden because the standard, autogenerated form is not used.
=cut
sub www_edit {
my $self = shift;
my $session = $self->session;
return $session->privilege->insufficient() unless $self->canEdit;
return $session->privilege->locked() unless $self->canEditIfLocked;
return $self->getArchive->processStyle($self->getEditForm);
}
#-------------------------------------------------------------------
=head2 www_showConfirmation ( )