Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Development
Core
Commits
2ff620ae
Commit
2ff620ae
authored
Jul 25, 2018
by
scardinius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#278
Fix DB syntax error when try to search deleted cases
parent
c57fce72
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
CRM/Case/BAO/Case.php
CRM/Case/BAO/Case.php
+1
-1
No files found.
CRM/Case/BAO/Case.php
View file @
2ff620ae
...
...
@@ -1590,7 +1590,7 @@ SELECT case_status.label AS case_status, status_id, civicrm_case_type.title AS c
AND civicrm_case.id IN(
{
$caseID
}
)
AND civicrm_case.is_deleted =
{
$cases
[
'case_deleted'
]
}
"
;
$query
=
self
::
getCaseActivityQuery
(
$type
,
$userID
,
$condition
,
$cases
[
'case_deleted'
]
);
$query
=
self
::
getCaseActivityQuery
(
$type
,
$userID
,
$condition
);
$res
=
CRM_Core_DAO
::
executeQuery
(
$query
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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