--- parser3/src/classes/form.C 2002/04/18 10:50:59 1.23 +++ parser3/src/classes/form.C 2002/07/01 14:00:36 1.24 @@ -4,7 +4,7 @@ Copyright (c) 2001, 2002 ArtLebedev Group (http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) - $Id: form.C,v 1.23 2002/04/18 10:50:59 paf Exp $ + $Id: form.C,v 1.24 2002/07/01 14:00:36 paf Exp $ */ #include "classes.h" @@ -56,12 +56,12 @@ void MForm::configure_admin(Request& r) throw Exception("parser.runtime", 0, "posted content_length(%u) > max_post_size(%u)", - r.post_size, max_post_size); + r.content_length, max_post_size); if(r.info.content_length<0) throw Exception(0, 0, "posted content_length(%u) < 0", - r.post_size); + r.content_length); // read POST data if(r.info.content_length) {