summaryrefslogtreecommitdiff
path: root/admin.pl
diff options
context:
space:
mode:
authorchristopherm <christopherm@4979c152-3d1c-0410-bac9-87ea11338e46>2008-07-09 17:56:41 +0000
committerchristopherm <christopherm@4979c152-3d1c-0410-bac9-87ea11338e46>2008-07-09 17:56:41 +0000
commitf1010f196b095a8c815e345ffd5336161c305a2e (patch)
tree542debfb3b4997d1d9f8c32269881e729ae9ace1 /admin.pl
parent5a984be85123f673549efd2b22c22c7e44189192 (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
Diffstat (limited to 'admin.pl')
-rwxr-xr-xadmin.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin.pl b/admin.pl
index 3e63e4e9..9cf121f8 100755
--- a/admin.pl
+++ b/admin.pl
@@ -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";
}