예제 #1
0
파일: init.php 프로젝트: biow0lf/evedev-kb
 public static function importhandler($object)
 {
     if (config::get('forward_active') == false) {
         return;
     }
     require_once 'common/includes/class.http.php';
     $req = new http_request(config::get('forward_site') . '?a=post');
     $req->set_postform('password', config::get('forward_pass'));
     $req->set_postform('killmail', stripslashes($object->killmail_));
     $req->request();
 }