Changeset 121 for trunk/XJConf/ext

Show
Ignore:
Timestamp:
11/11/07 21:43:04 (1 year ago)
Author:
mikey
Message:

whitespace fixes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/XJConf/ext/Extension.php

    r115 r121  
    1616interface Extension 
    1717{ 
    18        /** 
    19         * Get the namespace URI used by the extension 
    20         *  
    21         * @return  string 
    22         */ 
     18    /** 
     19    * Get the namespace URI used by the extension 
     20    *  
     21    * @return  string 
     22    */ 
    2323    public function getNamespace(); 
    2424     
  • trunk/XJConf/ext/xinc/XInclude.php

    r115 r121  
    7171    public function endElement(XmlParser $reader, Tag $tag) 
    7272    { 
    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       
    7676 
    7777        $href = $tag->getAttribute('href');