Ignore:
Timestamp:
2010/03/11 10:35:11 (14 years ago)
Author:
kajiwara
Message:

正式版にナイトリービルド版をマージしてみるテスト

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tmp/version-2_5-test/html/admin/require.php

    r18562 r18609  
    2121 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. 
    2222 */ 
    23 $admin_require_php_dir = realpath(dirname( __FILE__)); 
    24 require_once($admin_require_php_dir . "/../define.php"); 
    25 require_once($admin_require_php_dir . "/../" . HTML2DATA_DIR . "require_base.php"); 
     23 
     24// rtrim は PHP バージョン依存対策 
     25define('HTML_PATH', rtrim(realpath(rtrim(realpath(dirname(__FILE__)), '/\\') . '/../'), '/\\') . '/'); 
     26define('ADMIN_FUNCTION', true); 
     27 
     28require_once HTML_PATH . 'handle_error.php'; 
     29require_once HTML_PATH . 'define.php'; 
     30 
     31require_once HTML_PATH . HTML2DATA_DIR . 'require_base.php'; 
     32 
     33ob_start(); 
    2634?> 
Note: See TracChangeset for help on using the changeset viewer.