In module source code is used 'maxcomments' parameter, which is not initialized. User can set only maximum number of nodes and filenames.

Code:
$max = isset($account->workspaces) ? $account->workspaces['default']['maxcomments'] : 50;

Should be replaced by:
$max = isset($account->workspaces) ? $account->workspaces['default']['maxnodes'] : 50;

Comments

hutch’s picture

StatusFileSize
new1.09 KB

Alternately the option to set the number of comments could be added to the configuration page
Here is an untested patch on HEAD

frank ralf’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

calmforce’s picture

Status: Closed (fixed) » Patch (to be ported)
StatusFileSize
new2.86 KB

The patch in comment #1 doesn't work because the 'maxcomments' field value has not been saved in workspace_configure_form_submit function. I found one more bug related to 'maxfilenames' setting: function workspace_list_files uses unidentified variable $user instead of $account.
I fixed both problems and the patch is attached.