[Phphtmllib-devel] SF.net SVN: phphtmllib:[3203] trunk/phphtmllib/src/core/XMLTAGS.inc
Status: Beta
Brought to you by:
hemna
From: <he...@us...> - 2008-11-21 18:30:04
|
Revision: 3203 http://phphtmllib.svn.sourceforge.net/phphtmllib/?rev=3203&view=rev Author: hemna Date: 2008-11-21 18:29:55 +0000 (Fri, 21 Nov 2008) Log Message: ----------- some php5 cleanup Modified Paths: -------------- trunk/phphtmllib/src/core/XMLTAGS.inc Modified: trunk/phphtmllib/src/core/XMLTAGS.inc =================================================================== --- trunk/phphtmllib/src/core/XMLTAGS.inc 2008-11-21 18:28:52 UTC (rev 3202) +++ trunk/phphtmllib/src/core/XMLTAGS.inc 2008-11-21 18:29:55 UTC (rev 3203) @@ -17,9 +17,9 @@ * @package phpHtmlLib */ class XMLtag extends XMLTagClass { - var $_tag = "xml"; - var $_tag_prefix = "<?"; - var $_tag_postfix = " ?>"; + protected $_tag = "xml"; + protected $_tag_prefix = "<?"; + protected $_tag_postfix = " ?>"; function __construct( $attributes=array() ) { parent::__construct( $this->_tag, $attributes); @@ -39,7 +39,7 @@ * @package phpHtmlLib */ class XMLSTYLESHEETtag extends XMLtag { - var $_tag = "xml-stylesheet"; + protected $_tag = "xml-stylesheet"; } // XMLSTYLESHEETtag @@ -49,9 +49,9 @@ * @package phpHtmlLib */ class CDATAtag extends XMLTagClass { - var $_tag = "CDATA["; - var $_tag_prefix = "<!["; - var $_tag_postfix = "]]>"; + protected $_tag = "CDATA["; + protected $_tag_prefix = "<!["; + protected $_tag_postfix = "]]>"; function __construct() { parent::__construct($this->_tag, array()); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |