Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flexydial
/
hdfc-beu-v2
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
bfb6d3cf
authored
2018-12-11 18:39:42 +0530
by
G Manojkumar
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
condition added for Missedcall
1 parent
36d84532
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
application/app/Http/Controllers/DialerController.php
application/app/Http/Controllers/DialerController.php
View file @
bfb6d3c
...
...
@@ -970,8 +970,12 @@ public function show($id)
$mccount
=
count
(
$mc_number
);
if
(
$mccount
==
0
){
$number_list
[]
=
$tcall
->
number
;
if
(
$mccount
==
0
){
include
(
app_path
()
.
'/Hacks/DisabledDIDs.php'
);
if
(
in_array
(
substr
(
$tcall
->
number
,
-
10
),
$DisableNumbersArray
)
){
Log
::
info
(
"Disabled Number"
.
$tcall
->
number
);
}
else
{
$number_list
[]
=
$tcall
->
number
;
}
//$number_list[] = $tcall->number;
}
}
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment