From: Brian Cassidy Date: Tue, 9 Oct 2007 20:09:33 +0000 (+0000) Subject: variable escaping issue [rindolf] X-Git-Tag: v5.8005~327 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=cae937d8319d60d4bae9378f5263770dbd9b7d7b variable escaping issue [rindolf] --- diff --git a/lib/Catalyst/Manual/Tutorial/Debugging.pod b/lib/Catalyst/Manual/Tutorial/Debugging.pod index 6deab22..e885ec9 100644 --- a/lib/Catalyst/Manual/Tutorial/Debugging.pod +++ b/lib/Catalyst/Manual/Tutorial/Debugging.pod @@ -79,7 +79,7 @@ following code to a controller action method: $c->log->info("Starting the foreach loop here"); - $c->log->debug("Value of $id is: ".$id); + $c->log->debug("Value of \$id is: ".$id); Then the Catalyst development server will display your message along with the other debug output. To accomplish the same thing in a TTSite