diff options
author | christopherm <christopherm@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-07-09 17:56:41 +0000 |
---|---|---|
committer | christopherm <christopherm@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-07-09 17:56:41 +0000 |
commit | f1010f196b095a8c815e345ffd5336161c305a2e (patch) | |
tree | 542debfb3b4997d1d9f8c32269881e729ae9ace1 | |
parent | 5a984be85123f673549efd2b22c22c7e44189192 (diff) |
fixing my same copy/paste error in admin.pl
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@2201 4979c152-3d1c-0410-bac9-87ea11338e46
-rwxr-xr-x | admin.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -53,7 +53,7 @@ require "common.pl"; $| = 1; -if ($ENV{CONTENT_LENGTH} > $LedgerSMB::Sysconfig::max_post_size; ) { +if ( $ENV{CONTENT_LENGTH} > $LedgerSMB::Sysconfig::max_post_size ) { print "Status: 413\n Request entity too large\n\n"; die "Error: Request entity too large\n"; } |