Changeset 21861


Ignore:
Timestamp:
2012/05/29 18:27:06 (12 years ago)
Author:
tokuhiro
Message:

refs#1828 プラグインの登録ができないバグの修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/html/install/index.php

    r21853 r21861  
    374374        $objPage->tpl_mode = 'step0'; 
    375375        umask(0); 
     376        $path = HTML_REALDIR . 'plugin'; 
     377        if (!file_exists($path)) { 
     378            mkdir($path); 
     379        } 
     380        $path = DATA_REALDIR . 'downloads/tmp'; 
     381        var_dump($path); 
     382        if (!file_exists($path)) { 
     383            mkdir($path); 
     384        } 
     385        $path = DATA_REALDIR . 'downloads/tmp/plugin_install'; 
     386        if (!file_exists($path)) { 
     387            mkdir($path); 
     388        } 
    376389        $path = HTML_REALDIR . 'upload/temp_template'; 
    377390        if (!file_exists($path)) { 
Note: See TracChangeset for help on using the changeset viewer.