Changeset 1905
- Timestamp:
- 10/25/08 16:06:02 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
framework/trunk/src/main/php/net/stubbles/xml/xsl/util/stubXSLDateFormatter.php
r1713 r1905 7 7 * @subpackage xml_xsl_util 8 8 */ 9 stubClassLoader::load('net::stubbles::xml::stubXMLStreamWriter', 9 stubClassLoader::load('net::stubbles::lang::types::stubDate', 10 'net::stubbles::xml::stubXMLStreamWriter', 10 11 'net::stubbles::xml::xsl::util::stubXSLAbstractCallback' 11 12 ); … … 36 37 } 37 38 39 $date = new stubDate($timestamp); 38 40 $this->xmlStreamWriter->writeElement('date', 39 41 array('timestamp' => $timestamp), 40 date($format, $timestamp)42 $date->format($format) 41 43 ); 42 44 return $this->createDomDocument();
