diff options
author | plegall <plg@piwigo.org> | 2015-12-20 11:49:49 +0100 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2015-12-20 11:49:49 +0100 |
commit | f28420acfeb5d69e9ea39cd8d00cf9775d6cea54 (patch) | |
tree | 65a071e5bc15aae7b3c57b117d536871779810af | |
parent | 5a6f37edf9fbaf4de3823658d302f83193d58793 (diff) |
feature #346, give chunk size in pwg.session.getStatus response
Diffstat (limited to '')
-rw-r--r-- | include/ws_functions/pwg.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ws_functions/pwg.php b/include/ws_functions/pwg.php index b96338eaf..6d9d49fcc 100644 --- a/include/ws_functions/pwg.php +++ b/include/ws_functions/pwg.php @@ -339,6 +339,8 @@ function ws_session_getStatus($params, &$service) ) ) ); + + $res['upload_form_chunk_size'] = $conf['upload_form_chunk_size']; } return $res; |