[21210] Fix for php5 lenny version dying without any notice

Caeies <[email protected]> Sun, 02 May 2010 20:18:22 +0000
Newsgroups gmane.comp.web.phpgroupware.cvs
Message-ID <[email protected]>
Revision: 21210
          http://svn.sv.gnu.org/viewvc/?view=rev&root=phpgroupware&revision=21210
Author:   Caeies
Date:     2010-05-02 20:18:22 +0000 (Sun, 02 May 2010)
Log Message:
-----------
Fix for php5 lenny version dying without any notice

Modified Paths:
--------------
    modules/etemplate/branches/branch_0_9_16/inc/class.uietemplate.inc.php

Modified: modules/etemplate/branches/branch_0_9_16/inc/class.uietemplate.inc.php
===================================================================
--- modules/etemplate/branches/branch_0_9_16/inc/class.uietemplate.inc.php	2010-05-02 20:16:48 UTC (rev 21209)
+++ modules/etemplate/branches/branch_0_9_16/inc/class.uietemplate.inc.php	2010-05-02 20:18:22 UTC (rev 21210)
@@ -1109,4 +1109,9 @@
 			}
 			return $js;
 		}
+		//XXX Fix for php5.2.6 / Lenny
+		function __toString()
+		{
+			return $this->name;
+		}
 	};