From 9bedd1f49e8a04dcdecd9f3c5f7b96a35da11eec Mon Sep 17 00:00:00 2001 From: Kamil Rakowski Date: Fri, 6 Mar 2015 17:24:14 -0500 Subject: [PATCH] Fixed an incorrect variable name --- samples/call-info.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/call-info.php b/samples/call-info.php index 4a3b0e0..77ddbd9 100644 --- a/samples/call-info.php +++ b/samples/call-info.php @@ -32,7 +32,7 @@ $tropo->ask("This will catch the first text", array('choices' => '[ANY]')); // ... or, you can grab that first text like this straight from the session. - $messsage = $session->getInitialText(); + $message = $session->getInitialText(); $tropo->say("You said " . $message); } else { @@ -41,4 +41,4 @@ } print $tropo; -?> \ No newline at end of file +?>