[Openfirst-cvscommit] SF.net SVN: openfirst: [216] trunk/src/includes/xmlModule.php
Brought to you by:
xtimg
|
From: <ast...@us...> - 2007-03-25 19:48:37
|
Revision: 216
http://svn.sourceforge.net/openfirst/?rev=216&view=rev
Author: astronouth7303
Date: 2007-03-25 12:48:36 -0700 (Sun, 25 Mar 2007)
Log Message:
-----------
Fixed a syntax error (for php4)
Modified Paths:
--------------
trunk/src/includes/xmlModule.php
Modified: trunk/src/includes/xmlModule.php
===================================================================
--- trunk/src/includes/xmlModule.php 2007-03-22 03:48:31 UTC (rev 215)
+++ trunk/src/includes/xmlModule.php 2007-03-25 19:48:36 UTC (rev 216)
@@ -781,7 +781,7 @@
class xmlElement {
var $Name, $Attributes, $Contents, $parent;
- /*public*/ function xmlElement($Name, $Attributes, &$ParentElement=null) {
+ /*public*/ function xmlElement($Name, $Attributes, &$ParentElement) {
$this->Name = $Name;
$this->Attributes = $Attributes;
$this->Contents = array();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|