Changeset 121 for trunk/XJConf/ext
- Timestamp:
- 11/11/07 21:43:04 (1 year ago)
- Files:
-
- trunk/XJConf/ext/Extension.php (modified) (1 diff)
- trunk/XJConf/ext/xinc/XInclude.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/XJConf/ext/Extension.php
r115 r121 16 16 interface Extension 17 17 { 18 /**19 * Get the namespace URI used by the extension20 *21 * @return string22 */18 /** 19 * Get the namespace URI used by the extension 20 * 21 * @return string 22 */ 23 23 public function getNamespace(); 24 24 trunk/XJConf/ext/xinc/XInclude.php
r115 r121 71 71 public function endElement(XmlParser $reader, Tag $tag) 72 72 { 73 if ($tag->getName() != self::TAG_NAME) {74 throw new UnknownTagException('Unknown tag <' + $tag->getName() . '> in XInclude namespace.');75 }73 if ($tag->getName() != self::TAG_NAME) { 74 throw new UnknownTagException('Unknown tag <' + $tag->getName() . '> in XInclude namespace.'); 75 } 76 76 77 77 $href = $tag->getAttribute('href');
