XPressME Integration Kit

Trac

Changeset 452


Ignore:
Timestamp:
Nov 20, 2009, 3:44:05 PM (14 years ago)
Author:
toemon
Message:

Ver2.2.0RC1リリース前パッチ 投稿、変更時のブロックキャッシュ更新時のファイルパス取得エラー修正

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/XPressMU/xpressme_integration_kit/wp-content/plugins/xpressme/include/xpress_common_functions.php

    r451 r452  
    147147 
    148148                $block_theme_file = get_block_file_path($mydirname,$inc_theme_file_name);  
    149                 require_once $block_theme_file;  
     149                require_once $block_theme_file['file_path'];  
    150150                $block_render = $call_theme_function_name($options);            //The block name and the called function name should be assumed to be the same name.                      
    151151                $xml['block'] = $block_render;  
  • tags/Ver2.2.0RC1/xpressme_integration_kit/wp-content/plugins/xpressme/include/xpress_common_functions.php

    r450 r452  
    147147 
    148148                $block_theme_file = get_block_file_path($mydirname,$inc_theme_file_name);  
    149                 require_once $block_theme_file;  
     149                require_once $block_theme_file['file_path'];  
    150150                $block_render = $call_theme_function_name($options);            //The block name and the called function name should be assumed to be the same name.                      
    151151                $xml['block'] = $block_render;  
  • trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/xpress_common_functions.php

    r448 r452  
    147147 
    148148                $block_theme_file = get_block_file_path($mydirname,$inc_theme_file_name);  
    149                 require_once $block_theme_file;  
     149                require_once $block_theme_file['file_path'];  
    150150                $block_render = $call_theme_function_name($options);            //The block name and the called function name should be assumed to be the same name.                      
    151151                $xml['block'] = $block_render;  
Note: See TracChangeset for help on using the changeset viewer.