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

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.