summaryrefslogtreecommitdiff
path: root/lsmb-request.pl
diff options
context:
space:
mode:
authoraurynn_cmd <aurynn_cmd@4979c152-3d1c-0410-bac9-87ea11338e46>2007-09-20 20:06:53 +0000
committeraurynn_cmd <aurynn_cmd@4979c152-3d1c-0410-bac9-87ea11338e46>2007-09-20 20:06:53 +0000
commit5f24c101474901bf5607fcad189d287b43c5d799 (patch)
tree001cc0f7b8d04799ed8198bc455f56a623fe45a0 /lsmb-request.pl
parenta26ee3caf4e289a749069444faa989b7bbe7bde8 (diff)
Removal of extra new_user function from admin.pl.
Updates to DBObject.pm to remove treatment of argument list as a hashref. Update to LedgerSMB.pm to add s bare sub DESTROY so as not to trigger weird behaviour from using AUTOLOAD. git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1636 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'lsmb-request.pl')
-rw-r--r--lsmb-request.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lsmb-request.pl b/lsmb-request.pl
index 2edd45be..5c75d6f3 100644
--- a/lsmb-request.pl
+++ b/lsmb-request.pl
@@ -56,5 +56,5 @@ $script = "LedgerSMB::Scripts::$script";
$script->can($request->{action})
|| $request->error($locale->text("Action Not Defined: ") . $request->{action});
-$script->can($request->{action})->($request);
+$script->can( $request->{action} )->($request);
1;