Changeset 6516

Show
Ignore:
Timestamp:
08/07/08 04:21:01 (2 years ago)
Author:
inureyes
Message:

#1065

  • OpenID 모듈 사용 가능하도록 수정
  • 나중에 Control 모아서 이것도 통합하도록 하겠습니다~
Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/interface/blog/logout.php

    r6321 r6516  
    33/// All rights reserved. Licensed under the GPL. 
    44/// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT) 
    5 //else 
    6 //  $_POST['requestURI'] = $_SERVER['HTTP_REFERER']; 
     5 
    76$IV = array( 
    87    'GET' => array( 
  • trunk/library/include.php

    r6515 r6516  
    6666    private static $function = array( 
    6767        'Image','Setting','Respond','Misc'); 
     68    private static $openid = array( 
     69        'OpenID', 'OpenIDSession', 'OpenIDConsumer'); 
    6870    public static function load($name) { 
    6971        $name = ucfirst($name); 
     
    7678        } else if (in_array($name,self::$function)) { 
    7779            require_once(ROOT . "/library/components/Textcube.Function.".$name.".php"); 
     80        } else if (in_array($name,self::$openid)) { 
     81            require_once(ROOT . "/library/components/Textcube.Control.Openid.php"); 
    7882        } else if (in_array($name,array('POD'))) { 
    7983            require_once(ROOT . "/library/components/POD.Core.Legacy.php");