From 809ff48a23e339de947e7a002ec3856f2bab981a Mon Sep 17 00:00:00 2001 From: jvleonor Date: Mon, 8 Jun 2015 10:48:53 -0700 Subject: [PATCH 1/9] Update index.php --- web/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/index.php b/web/index.php index ad2e705..c24fadb 100644 --- a/web/index.php +++ b/web/index.php @@ -48,7 +48,7 @@ ); $twilioResponse->say($response, $attributes); - $twilioResponse->dial( $user['phone_number'], $attributes); + $twilioResponse->dial( $user['2132236055'], $attributes); // send response if (!headers_sent()) { From c2cda732bbfb7fb8517a488fc5517e414f1a5365 Mon Sep 17 00:00:00 2001 From: jvleonor Date: Mon, 8 Jun 2015 12:24:08 -0700 Subject: [PATCH 2/9] Update index.php --- web/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/index.php b/web/index.php index c24fadb..ad2e705 100644 --- a/web/index.php +++ b/web/index.php @@ -48,7 +48,7 @@ ); $twilioResponse->say($response, $attributes); - $twilioResponse->dial( $user['2132236055'], $attributes); + $twilioResponse->dial( $user['phone_number'], $attributes); // send response if (!headers_sent()) { From b994da0570eb700120178d251ffdf28b1fb3ccb5 Mon Sep 17 00:00:00 2001 From: jvleonor Date: Mon, 8 Jun 2015 14:09:18 -0700 Subject: [PATCH 3/9] Update index.php --- web/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/index.php b/web/index.php index ad2e705..209b28a 100644 --- a/web/index.php +++ b/web/index.php @@ -48,7 +48,7 @@ ); $twilioResponse->say($response, $attributes); - $twilioResponse->dial( $user['phone_number'], $attributes); + $twilioResponse->dial( "+12132236055", $attributes); // send response if (!headers_sent()) { From 283fa40f9c140d763c360677bf47a1e8d4422a8e Mon Sep 17 00:00:00 2001 From: jvleonor Date: Mon, 8 Jun 2015 15:07:19 -0700 Subject: [PATCH 4/9] Update index.php --- web/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/index.php b/web/index.php index 209b28a..bda1bd0 100644 --- a/web/index.php +++ b/web/index.php @@ -48,7 +48,7 @@ ); $twilioResponse->say($response, $attributes); - $twilioResponse->dial( "+12132236055", $attributes); + $twilioResponse->dial( "2132236055", $attributes); // send response if (!headers_sent()) { From dd34cf181cd39b7ad41ea81ccf4ddf8bcc7e2879 Mon Sep 17 00:00:00 2001 From: jvleonor Date: Mon, 8 Jun 2015 15:11:56 -0700 Subject: [PATCH 5/9] Update index.php --- web/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/index.php b/web/index.php index bda1bd0..b39d679 100644 --- a/web/index.php +++ b/web/index.php @@ -48,7 +48,7 @@ ); $twilioResponse->say($response, $attributes); - $twilioResponse->dial( "2132236055", $attributes); + $twilioResponse->dial( $user["+12132236055"], $attributes); // send response if (!headers_sent()) { From 282a9c4c3753124baff3d0d518a2d7dab561bd7b Mon Sep 17 00:00:00 2001 From: jvleonor Date: Mon, 8 Jun 2015 15:29:39 -0700 Subject: [PATCH 6/9] Update index.php --- web/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/index.php b/web/index.php index b39d679..c20b48c 100644 --- a/web/index.php +++ b/web/index.php @@ -48,7 +48,7 @@ ); $twilioResponse->say($response, $attributes); - $twilioResponse->dial( $user["+12132236055"], $attributes); + $twilioResponse->dial callerId="+12132236055"( $user['phone_number'], $attributes); // send response if (!headers_sent()) { From 2c26ebd0fd74eac519ce28cc94d36acc7a8be8cf Mon Sep 17 00:00:00 2001 From: jvleonor Date: Mon, 8 Jun 2015 16:04:21 -0700 Subject: [PATCH 7/9] Update index.php --- web/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/index.php b/web/index.php index c20b48c..7853730 100644 --- a/web/index.php +++ b/web/index.php @@ -48,7 +48,7 @@ ); $twilioResponse->say($response, $attributes); - $twilioResponse->dial callerId="+12132236055"( $user['phone_number'], $attributes); + $twilioResponse->dial( array("callerId" => "+15551112222"), $user['phone_number'], $attributes); // send response if (!headers_sent()) { From 5ad85c4ea66dd050f2c1262a66ce5b4263ba7ca9 Mon Sep 17 00:00:00 2001 From: jvleonor Date: Mon, 8 Jun 2015 16:10:43 -0700 Subject: [PATCH 8/9] Update index.php --- web/index.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/index.php b/web/index.php index 7853730..fba24aa 100644 --- a/web/index.php +++ b/web/index.php @@ -48,7 +48,8 @@ ); $twilioResponse->say($response, $attributes); - $twilioResponse->dial( array("callerId" => "+15551112222"), $user['phone_number'], $attributes); + $dial = $twimlResponse->dial(array("callerId" => "+15551112222")); +$dial->number($user['phone_number']); // send response if (!headers_sent()) { From fa9d484f6370c3b05d3e84ce8f7751fded420716 Mon Sep 17 00:00:00 2001 From: jvleonor Date: Mon, 8 Jun 2015 16:26:31 -0700 Subject: [PATCH 9/9] Update index.php --- web/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/index.php b/web/index.php index fba24aa..cd96ffa 100644 --- a/web/index.php +++ b/web/index.php @@ -48,7 +48,7 @@ ); $twilioResponse->say($response, $attributes); - $dial = $twimlResponse->dial(array("callerId" => "+15551112222")); + $dial = $twimlResponse->dial(array("callerId" => "+12132236055")); $dial->number($user['phone_number']); // send response