mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Use slashed zero in suggestions
This commit is contained in:
@@ -69,7 +69,7 @@ class Lookup extends CI_Controller {
|
||||
{
|
||||
if (in_array($row->COL_CALL, $arCalls) == false)
|
||||
{
|
||||
$arCalls[] = $row->COL_CALL;
|
||||
$arCalls[] = str_replace('0', 'Ø', $row->COL_CALL);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -83,7 +83,7 @@ class Lookup extends CI_Controller {
|
||||
foreach ($result as &$value) {
|
||||
if (in_array($value, $arCalls) == false)
|
||||
{
|
||||
$arCalls[] = $value;
|
||||
$arCalls[] = str_replace('0', 'Ø', $value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user