Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vtigercrm
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
Welcome to Vtiger Community. To gain access for account, please contact [ community @ vtiger.com ]
Show more breadcrumbs
Daniel Lennartz
vtigercrm
Commits
3f8414e3
Commit
3f8414e3
authored
5 years ago
by
Uma
Browse files
Options
Downloads
Patches
Plain Diff
Fixes #66 Scheduled workflow count defined globally
parent
8fae403d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
config.template.php
+3
-0
3 additions, 0 deletions
config.template.php
modules/com_vtiger_workflow/VTWorkflowManager.inc
+2
-1
2 additions, 1 deletion
modules/com_vtiger_workflow/VTWorkflowManager.inc
with
5 additions
and
1 deletion
config.template.php
+
3
−
0
View file @
3f8414e3
...
...
@@ -175,5 +175,8 @@ if(isset($default_timezone) && function_exists('date_default_timezone_set')) {
//Set the default layout
$default_layout
=
'v7'
;
//Maximiun scheduled workflows default value set to 10
$max_scheduled_workflows
=
10
;
include_once
'config.security.php'
;
?>
This diff is collapsed.
Click to expand it.
modules/com_vtiger_workflow/VTWorkflowManager.inc
+
2
−
1
View file @
3f8414e3
...
...
@@ -111,7 +111,8 @@ class VTWorkflowManager{
* @return int
*/
function
getMaxAllowedScheduledWorkflows
()
{
return
10
;
global
$max_scheduled_workflows
;
return
$max_scheduled_workflows
;
}
function
getWorkflowsForModule
(
$moduleName
){
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment