Skip to content
Snippets Groups Projects
Unverified Commit d4cbda05 authored by Peter Rotich's avatar Peter Rotich Committed by GitHub
Browse files

Merge pull request #4335 from JediKev/issue/ticket-lock-on-disable

issue: Ticket Lock On Disable
parents b9e8d6ed 62f5962f
No related branches found
No related tags found
No related merge requests found
......@@ -419,6 +419,11 @@ class OsticketConfig extends Config {
return $this->get('enable_avatars');
}
function isTicketLockEnabled() {
return (($this->getTicketLockMode() != Lock::MODE_DISABLED)
&& $this->getLockTime());
}
function getClientTimeout() {
return $this->getClientSessionTimeout();
}
......
......@@ -90,7 +90,7 @@ if($_POST && !$errors):
if(!$vars['response'])
$errors['response']=__('Response required');
if ($cfg->getLockTime()) {
if ($cfg->isTicketLockEnabled()) {
if (!$lock) {
$errors['err'] = sprintf('%s %s', __('This action requires a lock.'), __('Please try again!'));
}
......@@ -147,7 +147,7 @@ if($_POST && !$errors):
$vars['cannedattachments'] ?: array(), $attachments);
$vars['note'] = ThreadEntryBody::clean($vars['note']);
if ($cfg->getLockTime()) {
if ($cfg->isTicketLockEnabled()) {
if (!$lock) {
$errors['err'] = sprintf('%s %s', __('This action requires a lock.'), __('Please try again!'));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment