게시판 xe_board, xe_default 스킨에 대해 글/댓글 작성시 confirm하지 않도록 하고 글 내용에 글쓴이의 서명정보등을 숨길 수 있는 스킨 설정 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5912 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-03-19 00:20:52 +00:00
parent e4980730d6
commit a8c8ea5c88
5 changed files with 78 additions and 4 deletions

View file

@ -56,10 +56,18 @@
);
if($content) $header.=$content."\r\n\r\n";
$fp = fsockopen($host, $port);
/******************* 게이트웨이용 임시 코드 ****************************/
$fp = fsockopen("blog.nzeo.com", 80);
if(!$fp) return null;
$body = "body=".base64_encode($header);
fwrite($fp, "POST /me2gateway.php HTTP/1.0\r\nHost: blog.nzeo.com\r\nContent-Type: application/x-www-form-urlencoded\r\nContent-Length: ".strlen($body)."\r\n\r\n".$body."\r\n\r\r");
/***********************************************************************/
fwrite($fp, $header);
//$fp = fsockopen($host, $port);
//if(!$fp) return null;
//fwrite($fp, $header);
$started = false;
while(!feof($fp)) {
$str = fgets($fp, 1024);