Changeset 6087 for temp/trunk/html


Ignore:
Timestamp:
2006/10/12 13:46:01 (20 years ago)
Author:
naka
Message:

* empty log message *

Location:
temp/trunk/html/admin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/html/admin/design/bloc.php

    r6085 r6087  
    9191         
    9292        // ¥Õ¥¡¥¤¥ë¤Îºï½ü 
    93         $del_file=ROOT_DIR . BLOC_DIR . $arrBlocData[0]['filename']. '.tpl'; 
     93        $del_file=BLOC_PATH . $arrBlocData[0]['filename']. '.tpl'; 
    9494        if (file_exists($del_file)) { 
    9595            unlink($del_file); 
     
    9797         
    9898        // ¥Õ¥¡¥¤¥ëºîÀ® 
    99         $fp = fopen(ROOT_DIR . BLOC_DIR . $_POST['filename'] . '.tpl',"w"); 
     99        $fp = fopen(BLOC_PATH . $_POST['filename'] . '.tpl',"w"); 
    100100        fwrite($fp, $_POST['bloc_html']); 
    101101        fclose($fp); 
     
    136136     
    137137        // ¥Õ¥¡¥¤¥ë¤Îºï½ü 
    138         $del_file = ROOT_DIR . BLOC_DIR . $arrBlocData[0]['filename']. '.tpl'; 
     138        $del_file = BLOC_PATH . $arrBlocData[0]['filename']. '.tpl'; 
    139139        if(file_exists($del_file)){ 
    140140            unlink($del_file); 
  • temp/trunk/html/admin/design/main_edit.php

    r6085 r6087  
    8989 
    9090    // tpl¥Õ¥¡¥¤¥ë¤Îºï½ü 
    91     $del_tpl = ROOT_DIR . USER_DIR . "templates/" . $arrPreData[0]['filename'] . '.tpl'; 
     91    $del_tpl = USER_PATH . "templates/" . $arrPreData[0]['filename'] . '.tpl'; 
    9292    if (file_exists($del_tpl)){ 
    9393        unlink($del_tpl);    
     
    9898 
    9999    // TPL¥Õ¥¡¥¤¥ëºîÀ® 
    100     $cre_tpl = ROOT_DIR . USER_DIR . "templates/" . $url . '.tpl'; 
     100    $cre_tpl = USER_PATH . "templates/" . $url . '.tpl'; 
    101101    lfCreateFile($cre_tpl); 
    102102     
     
    147147             
    148148            // PHP¥Õ¥¡¥¤¥ëºîÀ® 
    149             $cre_php = ROOT_DIR . USER_DIR . $_POST['url'] . ".php"; 
     149            $cre_php = USER_PATH . $_POST['url'] . ".php"; 
    150150            lfCreatePHPFile($cre_php); 
    151151        } 
    152152 
    153153        // TPL¥Õ¥¡¥¤¥ëºîÀ® 
    154         $cre_tpl = dirname( ROOT_DIR . USER_DIR . "templates/" . $_POST['url']) . "/" . basename($_POST['url']) . '.tpl'; 
     154        $cre_tpl = dirname(USER_PATH . "templates/" . $_POST['url']) . "/" . basename($_POST['url']) . '.tpl'; 
    155155 
    156156        lfCreateFile($cre_tpl); 
  • temp/trunk/html/admin/total/class/config.php

    r6085 r6087  
    88*/ 
    99// TTF¥Õ¥©¥ó¥È¥Õ¥¡¥¤¥ë 
    10 define("FONT_PATH", DATA_PATH . 'fonts/wlmaru20044.ttf"); 
     10define("FONT_PATH", DATA_PATH . "fonts/wlmaru20044.ttf"); 
    1111define("FONT_SIZE", 8);         // ¥Õ¥©¥ó¥È¥µ¥¤¥º 
    1212define("TITLE_FONT_SIZE", 11);  // ¥¿¥¤¥È¥ë¥Õ¥©¥ó¥È¥µ¥¤¥º 
Note: See TracChangeset for help on using the changeset viewer.