Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Ravada-Mirror
Commits
1225febc
Commit
1225febc
authored
Sep 20, 2021
by
robertperez-upc
Committed by
Francesc Guasch
Sep 20, 2021
Browse files
Solved #1584: Warning use of unitialized value (#1585)
parent
ac5cb097
Changes
1
Hide whitespace changes
Inline
Side-by-side
script/rvd_front
View file @
1225febc
...
...
@@ -3285,7 +3285,7 @@ sub get_execution_machines_limit_per_current_user {
return login($c) if !_logged_in($c);
my %grants = $USER->grants();
my $start_limit = ((exists($grants{'start_limit'}))
&&
($grants{'start_limit'} > 0)) ? $grants{'start_limit'} : $RAVADA->settings_global()->{'backend'}->{'start_limit'}->{'value'};
my $start_limit = ((exists($grants{'start_limit'}))
&&
(defined($grants{'start_limit'}))
&&
($grants{'start_limit'} > 0)) ? $grants{'start_limit'} : $RAVADA->settings_global()->{'backend'}->{'start_limit'}->{'value'};
my $can_start_many = $USER->can_start_many ? 1 : 0;
my @running_domains;
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment