Remove the % wild card for the xml cdr search. This allows the user to specify it to meet there needs. For example show all calls that start with a 1 do the following 1%. If you want to find a call containing a number %208%.

This commit is contained in:
Mark Crane 2013-03-07 19:42:40 +00:00
parent a31e5eee6f
commit ca6476faf9
1 changed files with 3 additions and 3 deletions

View File

@ -80,7 +80,7 @@ else {
}
if (strlen($cdr_id) > 0) { $sql_where .= "and cdr_id like '%$cdr_id%' "; }
if (strlen($direction) > 0) { $sql_where .= "and direction = '$direction' "; }
if (strlen($caller_id_name) > 0) { $sql_where .= "and caller_id_name like '%$caller_id_name%' "; }
if (strlen($caller_id_name) > 0) { $sql_where .= "and caller_id_name like '$caller_id_name' "; }
if (strlen($caller_id_number) > 0 && strlen($destination_number) > 0) {
$sql_where .= "and (";
$sql_where .= "caller_id_number = '$caller_id_number' ";
@ -88,8 +88,8 @@ else {
$sql_where .= ") ";
}
else {
if (strlen($caller_id_number) > 0) { $sql_where .= "and caller_id_number like '%$caller_id_number%' "; }
if (strlen($destination_number) > 0) { $sql_where .= "and destination_number like '%$destination_number%' "; }
if (strlen($caller_id_number) > 0) { $sql_where .= "and caller_id_number like '$caller_id_number' "; }
if (strlen($destination_number) > 0) { $sql_where .= "and destination_number like '$destination_number' "; }
}
if (strlen($context) > 0) { $sql_where .= "and context like '%$context%' "; }
if ($db_type == "sqlite") {