From 3a6d9e8526bd7d58fe00bc9283d1f0c5d707bc4d Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 19 Dec 2010 21:52:54 +0100 Subject: [PATCH] fixed typo --- lib/Twig/Markup.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/Twig/Markup.php b/lib/Twig/Markup.php index 878ee07..9b8f630 100644 --- a/lib/Twig/Markup.php +++ b/lib/Twig/Markup.php @@ -21,7 +21,7 @@ class Twig_Markup extends Exception public function __construct($content) { - $this->content = $content; + $this->content = (string) $content; } public function __toString() -- 1.7.2.5