XPressME Integration Kit

Trac


Ignore:
Timestamp:
Sep 17, 2010, 11:13:52 AM (14 years ago)
Author:
toemon
Message:

cube2.2よりcacheディレクトリがtrust_path側へ移ったことへの対応 Fixes#373

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/xpressme_integration_kit/include/xpress_cache.php

    r96 r657  
    1818    { 
    1919        global $xoops_config; 
    20         if(defined('XOOPS_ROOT_PATH')){ 
    21                 $cache_dir = XOOPS_ROOT_PATH . '/cache/'; 
    22         } else { 
    23                 $cache_dir = $xoops_config->xoops_root_path . '/cache/'; 
    24         } 
     20         
     21        $cache_dir = $xoops_config->xoops_cache_path . '/'; 
    2522        $filename = $cache_dir .$mydirname . '_' . $collation_key; 
    2623        if (xpress_cache_found($filename)) { 
     
    3633    { 
    3734                global $xoops_config; 
    38                 $cache_dir = $xoops_config->xoops_root_path . '/cache/'; 
     35                $cache_dir = $xoops_config->xoops_cache_path . '/'; 
    3936                $cache_time = 0; 
    4037 
     
    5350    { 
    5451                global $xoops_config; 
    55                 $cache_dir = $xoops_config->xoops_root_path . '/cache/'; 
     52                $cache_dir = $xoops_config->xoops_cache_path . '/'; 
    5653                $cache_time = 0; 
    5754        if ($dh = opendir($cache_dir)) { 
Note: See TracChangeset for help on using the changeset viewer.