Changeset 6516
- Timestamp:
- 08/07/08 04:21:01 (2 years ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
interface/blog/logout.php (modified) (1 diff)
-
library/include.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/blog/logout.php
r6321 r6516 3 3 /// All rights reserved. Licensed under the GPL. 4 4 /// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT) 5 //else 6 // $_POST['requestURI'] = $_SERVER['HTTP_REFERER']; 5 7 6 $IV = array( 8 7 'GET' => array( -
trunk/library/include.php
r6515 r6516 66 66 private static $function = array( 67 67 'Image','Setting','Respond','Misc'); 68 private static $openid = array( 69 'OpenID', 'OpenIDSession', 'OpenIDConsumer'); 68 70 public static function load($name) { 69 71 $name = ucfirst($name); … … 76 78 } else if (in_array($name,self::$function)) { 77 79 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"); 78 82 } else if (in_array($name,array('POD'))) { 79 83 require_once(ROOT . "/library/components/POD.Core.Legacy.php");
