Ignore:
Timestamp:
2006/11/06 14:08:38 (20 years ago)
Author:
kakinaka
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/html/admin/system/load_module.php

    r6622 r7460  
    1616    $path = MODULE_PATH . $arrRet[0]['main_php']; 
    1717    if(file_exists($path)) { 
    18         require_once($path); 
     18         
     19        if($_GET['mode'] == "module_del"){ 
     20            // ¥â¥¸¥å¡¼¥ë¦¤Ëºï½ü¾ðÊó¤òÁ÷¿®¤¹¤ë 
     21            $req = new HTTP_Request($path); 
     22            $req->setMethod(HTTP_REQUEST_METHOD_POST); 
     23            $req->addPostData("mode", "module_del"); 
     24            $req->sendRequest(); 
     25            $req->clearPostData(); 
     26        }else{ 
     27            require_once($path); 
     28        } 
    1929        exit; 
    2030    } else { 
Note: See TracChangeset for help on using the changeset viewer.