Browse Source

tab indents must die

me@helium 8 years ago
parent
commit
d46bd30a8b
1 changed files with 3 additions and 3 deletions
  1. 3 3
      TemplateEngine/twig_test.php

+ 3 - 3
TemplateEngine/twig_test.php

@@ -3,9 +3,9 @@ require_once '/usr/share/php/Twig/Autoloader.php';
 Twig_Autoloader::register();
 $loader = new Twig_Loader_Filesystem('templates/');
 $twig = new Twig_Environment($loader, array(
-			'cache' => '/tmp/',
-            'auto_reload' => true
-			));
+                                'cache' => '/tmp/',
+                                'auto_reload' => true
+                                ));
 
 echo $twig->render('index.tpl', array('url' => array(array("url" => 'http://google.com', "urlTitle" => "google"), 
                                                      array("url" => 'http://gmail.com', "urlTitle" => "gmail"))));