[CS-Project-svn_notify] SF.net SVN: cs-project:[957] trunk/1.2/upgrade/upgradeTo1.2.0-ALPHA4.php
Brought to you by:
crazedsanity
From: <cra...@us...> - 2009-02-10 15:59:27
|
Revision: 957 http://cs-project.svn.sourceforge.net/cs-project/?rev=957&view=rev Author: crazedsanity Date: 2009-02-10 15:59:16 +0000 (Tue, 10 Feb 2009) Log Message: ----------- Updated upgrade script to use proper class names for XML stuff. Modified Paths: -------------- trunk/1.2/upgrade/upgradeTo1.2.0-ALPHA4.php Modified: trunk/1.2/upgrade/upgradeTo1.2.0-ALPHA4.php =================================================================== --- trunk/1.2/upgrade/upgradeTo1.2.0-ALPHA4.php 2009-02-10 15:56:45 UTC (rev 956) +++ trunk/1.2/upgrade/upgradeTo1.2.0-ALPHA4.php 2009-02-10 15:59:16 UTC (rev 957) @@ -105,10 +105,10 @@ //========================================================================= public function update_config_file() { $fs = new cs_fileSystemClass(dirname(__FILE__) .'/../'); - $sampleXmlObj = new XMLParser($fs->read('docs/samples/sample_config.xml')); - $siteXmlObj = new XMLParser($fs->read(CONFIG_FILE_LOCATION)); + $sampleXmlObj = new cs_phpxmlParser($fs->read('docs/samples/sample_config.xml')); + $siteXmlObj = new cs_phpxmlParser($fs->read(CONFIG_FILE_LOCATION)); - $updateXml = new xmlCreator(); + $updateXml = new cs_phpxmlCreator(); $updateXml->load_xmlparser_data($siteXmlObj); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |