summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authorivan <ivan>2002-02-23 22:36:55 +0000
committerivan <ivan>2002-02-23 22:36:55 +0000
commit00f2fdb5c3c9edfe446cf453ee33b9ebc7802925 (patch)
tree1a9ed1060ea7f08a830f4bc1ac087edb33aec263 /httemplate
parent903b22b3da3e3ee493bb322854c6bc0b0085e0dd (diff)
take hardcoded paths out of report cgis
Diffstat (limited to 'httemplate')
-rwxr-xr-xhttemplate/search/report_cc.cgi2
-rwxr-xr-xhttemplate/search/report_credit.cgi2
-rwxr-xr-xhttemplate/search/report_receivables.cgi2
-rwxr-xr-xhttemplate/search/report_tax.cgi2
4 files changed, 4 insertions, 4 deletions
diff --git a/httemplate/search/report_cc.cgi b/httemplate/search/report_cc.cgi
index 991c00831..f1c3c962c 100755
--- a/httemplate/search/report_cc.cgi
+++ b/httemplate/search/report_cc.cgi
@@ -21,7 +21,7 @@ $ending = $1;
print $cgi->header( '-expires' => '-2m' ),
header('Credit Card Recipt Report Results');
-open (REPORT, "/usr/bin/freeside-cc-receipts-report -v -s $beginning -d $ending $user |");
+open (REPORT, "freeside-cc-receipts-report -v -s $beginning -d $ending $user |");
print '<PRE>';
while(<REPORT>) {
diff --git a/httemplate/search/report_credit.cgi b/httemplate/search/report_credit.cgi
index f4430c13f..e4a9bf241 100755
--- a/httemplate/search/report_credit.cgi
+++ b/httemplate/search/report_credit.cgi
@@ -21,7 +21,7 @@ $ending = $1;
print $cgi->header( '-expires' => '-2m' ),
header('In House Credit Report Results');
-open (REPORT, "/usr/bin/freeside-credit-report -v -s $beginning -d $ending $user |");
+open (REPORT, "freeside-credit-report -v -s $beginning -d $ending $user |");
print '<PRE>';
while(<REPORT>) {
diff --git a/httemplate/search/report_receivables.cgi b/httemplate/search/report_receivables.cgi
index 6b96ba7a5..ba02eb720 100755
--- a/httemplate/search/report_receivables.cgi
+++ b/httemplate/search/report_receivables.cgi
@@ -14,7 +14,7 @@ $user = getotaker;
print $cgi->header( '-expires' => '-2m' ),
header('Current Receivables Report Results');
-open (REPORT, "/usr/bin/freeside-receivables-report -v $user |");
+open (REPORT, "freeside-receivables-report -v $user |");
print '<PRE>';
while(<REPORT>) {
diff --git a/httemplate/search/report_tax.cgi b/httemplate/search/report_tax.cgi
index bedfdac5f..bc683f8b7 100755
--- a/httemplate/search/report_tax.cgi
+++ b/httemplate/search/report_tax.cgi
@@ -21,7 +21,7 @@ $ending = $1;
print $cgi->header( '-expires' => '-2m' ),
header('Tax Report Results');
-open (REPORT, "/usr/bin/freeside-tax-report -v -s $beginning -d $ending $user |");
+open (REPORT, "freeside-tax-report -v -s $beginning -d $ending $user |");
print '<PRE>';
while(<REPORT>) {