From: Fabien Potencier Date: Thu, 3 Jun 2010 10:51:59 +0000 (+0200) Subject: removed PHP 5.3 specific code X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=b578a1cefa21910303faf2c540284df74f3d0fa1;p=web%2Fkonrad%2Ftwig.git removed PHP 5.3 specific code --- diff --git a/lib/Twig/Node.php b/lib/Twig/Node.php index 02efca3..9fc162d 100644 --- a/lib/Twig/Node.php +++ b/lib/Twig/Node.php @@ -65,7 +65,7 @@ class Twig_Node implements Twig_NodeInterface, ArrayAccess, Countable, Iterator public function toXml($asDom = false) { - $dom = new \DOMDocument('1.0', 'UTF-8'); + $dom = new DOMDocument('1.0', 'UTF-8'); $dom->formatOutput = true; $dom->appendChild($xml = $dom->createElement('twig'));