View | Details | Raw Unified | Return to bug 15669
Collapse All | Expand All

(-)a/C4/MarcModificationTemplates.pm (-2 / +1 lines)
Lines 77-83 sub GetModificationTemplates { Link Here
77
  warn("C4::MarcModificationTemplates::GetModificationTemplates( $template_id )") if DEBUG;
77
  warn("C4::MarcModificationTemplates::GetModificationTemplates( $template_id )") if DEBUG;
78
78
79
  my $dbh = C4::Context->dbh;
79
  my $dbh = C4::Context->dbh;
80
  my $sth = $dbh->prepare("SELECT * FROM marc_modification_templates");
80
  my $sth = $dbh->prepare("SELECT * FROM marc_modification_templates ORDER BY name");
81
  $sth->execute();
81
  $sth->execute();
82
82
83
  my @templates;
83
  my @templates;
84
- 

Return to bug 15669