Changeset 6652 for temp


Ignore:
Timestamp:
2006/10/25 12:38:20 (20 years ago)
Author:
naka
Message:

* empty log message *

Location:
temp/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/downloads/module/ebis_tag.php

    r6642 r6652  
    2828$objView->assignobj($objPage);      //ÊÑ¿ô¤ò¥Æ¥ó¥×¥ì¡¼¥È¤Ë¥¢¥µ¥¤¥ó¤¹¤ë 
    2929$objView->display($objPage->tpl_mainpage);      //¥Æ¥ó¥×¥ì¡¼¥È¤Î½ÐÎÏ 
     30 
    3031//------------------------------------------------------------------------------------------------------- 
    3132?> 
  • temp/trunk/html/admin/system/module.php

    r6650 r6652  
    246246        $arrFiles[] = $arrRet[0]['extern_php']; 
    247247        foreach($arrFiles as $val) { 
    248             $path = DATA_PATH . $val; 
    249             if(file_exists($path)) { 
    250                 // ¥Õ¥¡¥¤¥ë¤òºï½ü¤¹¤ë 
    251                 if(unlink($path)) { 
    252                     $objPage->update_mess.= ">> " . $path . "¡§ºï½üÀ®¸ù<br>"; 
    253                 } else { 
    254                     $objPage->update_mess.= ">> " . $path . "¡§ºï½ü¼ºÇÔ<br>"; 
    255                 } 
     248            $path = MODULE_PATH . $val; 
     249            // ¥Õ¥¡¥¤¥ë¤òºï½ü¤¹¤ë 
     250            if(file_exists($path) && unlink($path)) { 
     251                $objPage->update_mess.= ">> " . $path . "¡§ºï½üÀ®¸ù<br>"; 
     252            } else { 
     253                $objPage->update_mess.= ">> " . $path . "¡§ºï½ü¼ºÇÔ<br>"; 
    256254            } 
    257255        } 
Note: See TracChangeset for help on using the changeset viewer.