• R/O
  • SSH
  • HTTPS

phpcommons: Commit


Commit MetaInfo

Revisão429 (tree)
Hora2009-05-13 21:50:17
Autorwhitestar

Mensagem de Log

(mensagem de log vazia)

Mudança Sumário

Diff

--- commons/trunk/src/main/php/Commons/Phing/Tasks/Ext/XmlPropertyTask.php (revision 428)
+++ commons/trunk/src/main/php/Commons/Phing/Tasks/Ext/XmlPropertyTask.php (revision 429)
@@ -24,7 +24,7 @@
2424 * @author Yomei Komiya
2525 * @copyright 2009 the original author or authors.
2626 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
27- * @version SVN: $Id:$
27+ * @version SVN: $Id$
2828 * @link http://phpcommons.sourceforge.jp/
2929 * @see
3030 * @since File available since Release 1.0.4
@@ -117,8 +117,10 @@
117117
118118 try {
119119 if ($file->exists()) {
120- $xml = XMLReader::XML($file->getAbsolutePath());
120+ $xml = new XMLReader();
121+ $xml->open($file->getAbsolutePath());
121122 $this->parseXmlProperties($xml);
123+ $xml->close();
122124 }
123125 else {
124126 $this->log("Unable to find XML property file: "
Show on old repository browser