summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/recon.pl (renamed from scripts/reconciliation.pl)7
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/reconciliation.pl b/scripts/recon.pl
index 9c823a09..705588ed 100644
--- a/scripts/reconciliation.pl
+++ b/scripts/recon.pl
@@ -1,3 +1,4 @@
+#!/usr/bin/perl
=pod
=head1 NAME
@@ -17,10 +18,10 @@ interfacing with the Core Logic and database layers.
# NOTE: This is a first draft modification to use the current parameter type.
# It will certainly need some fine tuning on my part. Chris
-package LedgerSMB::Scripts::Reconciliation;
+package LedgerSMB::Scripts::recon;
use LedgerSMB::Template;
-use LedgerSMB::DBObject::Reconciliation;
+use LedgerSMB::Reconciliation;
=pod
@@ -390,7 +391,7 @@ sub pending {
if ($request->type() eq "POST") {
return $template->render(
{
- pending=>$recon->get_pending($request->{year}."-".$request->{month});
+ pending=>$recon->get_pending($request->{year}."-".$request->{month})
}
);
}