From 5cbb53e178b34ee3cc569e0dfd3dc9e99baa81d6 Mon Sep 17 00:00:00 2001 From: misol Date: Sat, 1 Aug 2009 02:42:39 +0000 Subject: [PATCH] =?UTF-8?q?=EC=9D=98=EB=8F=84=EC=B9=98=20=EC=95=8A?= =?UTF-8?q?=EC=95=98=EB=8D=98=20=EC=BB=A4=EB=B0=8B=20=EB=90=98=EB=8F=8C?= =?UTF-8?q?=EB=A6=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6716 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- .../editor/components/image_link/image_link.class.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/modules/editor/components/image_link/image_link.class.php b/modules/editor/components/image_link/image_link.class.php index d490f1e87..f6f5f06a8 100644 --- a/modules/editor/components/image_link/image_link.class.php +++ b/modules/editor/components/image_link/image_link.class.php @@ -60,15 +60,6 @@ $src = str_replace('&', '&', $src); if(!$alt) $alt = $src; - // 이미지 주소를 request uri가 포함된 주소로 변환 (rss출력, 등등을 위함) - $temp_src = explode('/', $src); - if($temp_src[0]=='.') $src = Context::getRequestUri().substr($src, 2); - elseif(substr($src , 0 , 1)=='/') { - if($_SERVER['HTTPS']=='on') $http_src = 'https://'; - else $http_src = 'http://'; - $src = $http_src.$_SERVER['HTTP_HOST'].$src; - } - elseif(!strpos($temp_src[0],':') && $src) $src = Context::getRequestUri().$src; $attr_output = array(); $attr_output = array("src=\"".$src."\"");