small fixes from nye master
authorRex Feany <rfeany@rexfeany.com>
Mon, 1 Mar 2010 22:08:33 +0000 (14:08 -0800)
committerRex Feany <rfeany@rexfeany.com>
Mon, 1 Mar 2010 22:08:33 +0000 (14:08 -0800)
php/YATT.class.php
php/example.php

index c6c9ff9b7a9e83f358d6175c5633e2c9349bb4e2..32861f5dc566be110477bec4aae846e69570b08d 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
 /*
  * Simple text template class. Does not handle caching.
  *
@@ -27,7 +27,7 @@ class YATT {
     var $obj;
 
     # Holds variables
-    var $vars;
+    var $vars = array();
 
     # Holds information on errors
     var $errors;
index e4e809882b8671529acf44933c0b6945c3fbb806..6eb1261675e12133b0a562dff16e640db405895c 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
 
 require_once('YATT.class.php');