From e3a207bc3b7980883f75ee362246cbba3259e0c0 Mon Sep 17 00:00:00 2001 From: JustinDupree Date: Fri, 20 Jul 2012 17:22:33 -0300 Subject: [PATCH] Fixed incorrect variable --- samples/call-info.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/call-info.php b/samples/call-info.php index 7ac65dc..4a3b0e0 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 = $tropo->getInitialText(); + $messsage = $session->getInitialText(); $tropo->say("You said " . $message); } else {