<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[TNF : Tatter Network Foundation forum - 스킨에 자동생성되는 태그중 일부를 지우고싶습니다.]]></title>
		<link>http://forum.tattersite.com/ko/viewtopic.php?id=9582</link>
		<description><![CDATA[스킨에 자동생성되는 태그중 일부를 지우고싶습니다. 의 최근 RSS 글들.]]></description>
		<lastBuildDate>Fri, 02 Apr 2010 03:20:31 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[RSS 답글: 스킨에 자동생성되는 태그중 일부를 지우고싶습니다.]]></title>
			<link>http://forum.tattersite.com/ko/viewtopic.php?pid=38355#p38355</link>
			<description><![CDATA[<p>해결하였습니다.<br />답변주신 분들 모두 감사합니다.</p>]]></description>
			<author><![CDATA[null@example.com (이츠미)]]></author>
			<pubDate>Fri, 02 Apr 2010 03:20:31 +0000</pubDate>
			<guid>http://forum.tattersite.com/ko/viewtopic.php?pid=38355#p38355</guid>
		</item>
		<item>
			<title><![CDATA[RSS 답글: 스킨에 자동생성되는 태그중 일부를 지우고싶습니다.]]></title>
			<link>http://forum.tattersite.com/ko/viewtopic.php?pid=38339#p38339</link>
			<description><![CDATA[<div class="quotebox"><cite>이츠미 작성:</cite><blockquote><p><a href="http://forum.tattersite.com/ko/viewtopic.php?id=8623">http://forum.tattersite.com/ko/viewtopic.php?id=8623</a></p><p>에 올라와진 글과 동일한 질문입니다.</p><p>&lt;div class=&quot;block&quot;&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;h2&gt;Recently Posts&lt;/h2&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;ul class=&quot;dates&quot;&gt;<br /><span style="color: red">&lt;div class=&quot;hslice&quot; id=&quot;recentEntriesWebslice&quot; style=&quot;margin:0;padding:0;&quot;&gt;<br />&lt;h4 class=&quot;entry-title&quot; style=&quot;visibility:hidden;height:0;padding:0;margin:0;&quot;&gt;blog 樂 - 최근 글&lt;/h4&gt;<br />&lt;div class=&quot;entry-content&quot; style=&quot;margin:0;padding:0;&quot;&gt;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;s_rctps_rep&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;&lt;a href=&quot;[##_rctps_rep_link_##]&quot;&gt; [##_rctps_rep_title_##]. &lt;span class=&quot;count&quot;&gt;[##_rctps_rep_rp_cnt_##]&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/s_rctps_rep&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/ul&gt;</p><p>빨간부분이 문제되는 부분이고요, ul 태그와 li 태그사이에 div 가와서는 안됩니다. 문법상 안맞는 경우입니다.<br />좀 지웠으면 하는데 소스에서 어딜 날려버리면되는 건지 알려주시면 감사하겠습니다.</p></blockquote></div><p>참고로 이 부분은 1.8.1 이상에서는 스킨에 &#039;사용하겠다&#039; 고 적어주지 않으면 말씀하신것 처럼 처리되지 않습니다. 업그레이드를 해 보시면 어떨까요? ^^</p>]]></description>
			<author><![CDATA[null@example.com (inureyes)]]></author>
			<pubDate>Thu, 01 Apr 2010 15:02:33 +0000</pubDate>
			<guid>http://forum.tattersite.com/ko/viewtopic.php?pid=38339#p38339</guid>
		</item>
		<item>
			<title><![CDATA[RSS 답글: 스킨에 자동생성되는 태그중 일부를 지우고싶습니다.]]></title>
			<link>http://forum.tattersite.com/ko/viewtopic.php?pid=38331#p38331</link>
			<description><![CDATA[<p>library/view/view.php 열어 보시면<br />버전별 라인수는 다르지만 대략,<br />1050~1120 사이<br />아래의 구문이 있습니다.<br /></p><div class="codebox"><pre><code>function addWebSlice($content, $id, $title) {
    return &#039;&lt;div class=&quot;hslice&quot; id=&quot;&#039;.$id.&#039;&quot; style=&quot;margin:0;padding:0;&quot;&gt;&#039;.CRLF.
        &#039;&lt;h4 class=&quot;entry-title&quot; style=&quot;visibility:hidden;height:0;margin:0;padding:0;&quot;&gt;&#039;.$title.&#039;&lt;/h4&gt;&#039;.CRLF.
        &#039;&lt;div class=&quot;entry-content&quot; style=&quot;margin:0;padding:0;&quot;&gt;&#039;.CRLF.$content.CRLF.&#039;&lt;/div&gt;&#039;.CRLF.
        &#039;&lt;/div&gt;&#039;.CRLF;
}</code></pre></div><p>아래처럼 수정해주세요.<br /></p><div class="codebox"><pre><code>function addWebSlice($content, $id, $title) {
    return $content;
//    return &#039;&lt;div class=&quot;hslice&quot; id=&quot;&#039;.$id.&#039;&quot; style=&quot;margin:0;padding:0;&quot;&gt;&#039;.CRLF.
//        &#039;&lt;h4 class=&quot;entry-title&quot; style=&quot;visibility:hidden;height:0;margin:0;padding:0;&quot;&gt;&#039;.$title.&#039;&lt;/h4&gt;&#039;.CRLF.
//        &#039;&lt;div class=&quot;entry-content&quot; style=&quot;margin:0;padding:0;&quot;&gt;&#039;.CRLF.$content.CRLF.&#039;&lt;/div&gt;&#039;.CRLF.
//        &#039;&lt;/div&gt;&#039;.CRLF;
}</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (LonnieNa)]]></author>
			<pubDate>Thu, 01 Apr 2010 07:49:43 +0000</pubDate>
			<guid>http://forum.tattersite.com/ko/viewtopic.php?pid=38331#p38331</guid>
		</item>
		<item>
			<title><![CDATA[스킨에 자동생성되는 태그중 일부를 지우고싶습니다.]]></title>
			<link>http://forum.tattersite.com/ko/viewtopic.php?pid=38329#p38329</link>
			<description><![CDATA[<p><a href="http://forum.tattersite.com/ko/viewtopic.php?id=8623">http://forum.tattersite.com/ko/viewtopic.php?id=8623</a></p><p>에 올라와진 글과 동일한 질문입니다.</p><p>&lt;div class=&quot;block&quot;&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;h2&gt;Recently Posts&lt;/h2&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;ul class=&quot;dates&quot;&gt;<br /><span style="color: red">&lt;div class=&quot;hslice&quot; id=&quot;recentEntriesWebslice&quot; style=&quot;margin:0;padding:0;&quot;&gt;<br />&lt;h4 class=&quot;entry-title&quot; style=&quot;visibility:hidden;height:0;padding:0;margin:0;&quot;&gt;blog 樂 - 최근 글&lt;/h4&gt;<br />&lt;div class=&quot;entry-content&quot; style=&quot;margin:0;padding:0;&quot;&gt;</span><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;s_rctps_rep&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;&lt;a href=&quot;[##_rctps_rep_link_##]&quot;&gt; [##_rctps_rep_title_##]. &lt;span class=&quot;count&quot;&gt;[##_rctps_rep_rp_cnt_##]&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/s_rctps_rep&gt;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;/ul&gt;</p><p>빨간부분이 문제되는 부분이고요, ul 태그와 li 태그사이에 div 가와서는 안됩니다. 문법상 안맞는 경우입니다.<br />좀 지웠으면 하는데 소스에서 어딜 날려버리면되는 건지 알려주시면 감사하겠습니다.</p>]]></description>
			<author><![CDATA[null@example.com (이츠미)]]></author>
			<pubDate>Thu, 01 Apr 2010 02:19:49 +0000</pubDate>
			<guid>http://forum.tattersite.com/ko/viewtopic.php?pid=38329#p38329</guid>
		</item>
	</channel>
</rss>
