mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-16 15:41:13 +02:00
2023-05-17 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in the WebAPI that caused imports to bypass the maximum file size limitation set the 'System Settings' in rdadmin(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -112,7 +112,8 @@ Xport::Xport(QObject *parent)
|
||||
//
|
||||
// Generate Post
|
||||
//
|
||||
xport_post=new RDFormPost(RDFormPost::AutoEncoded,false);
|
||||
xport_post=new RDFormPost(RDFormPost::AutoEncoded,
|
||||
rda->system()->maxPostLength(),false);
|
||||
if(xport_post->error()!=RDFormPost::ErrorOk) {
|
||||
XmlExit(xport_post->errorString(xport_post->error()),400,"rdxport.cpp",
|
||||
LINE_NUMBER);
|
||||
|
Reference in New Issue
Block a user