소스 검색

Add sections intro and content

Laurent Destailleur 5 년 전
부모
커밋
c22a6ad98c
1개의 변경된 파일6개의 추가작업 그리고 3개의 파일을 삭제
  1. 6 3
      scripts/website/migrate-news-joomla2dolibarr.php

+ 6 - 3
scripts/website/migrate-news-joomla2dolibarr.php

@@ -123,12 +123,15 @@ while ($obj = $dbjoomla->fetch_object($resql)) {
 
 		$htmltext = "";
 		if ($blogpostheader) $htmltext .= $blogpostheader."\n";
-		$htmltext .= '<section id="mysectionnews" contenteditable="true">'."\n";
+		$htmltext .= '<section id="mysectionnewsintro" contenteditable="true">'."\n";
 		$htmltext .= $obj->introtext;
+		$htmltext .= '</section>'."\n";
 		if ($obj->fulltext) {
-			$htmltext .= '<br>'."\n".'<hr>'."\n".'<br>'."\n".$obj->fulltext;
+			$htmltext .= '<section id="mysectionnewscontent" contenteditable="true">'."\n";
+			$htmltext .= '<br>'."\n".'<hr>'."\n".'<br>'."\n";
+			$htmltext .= $obj->fulltext;
+			$htmltext .= "</section>";
 		}
-		$htmltext .= "\n</section>";
 		if ($blogpostfooter) $htmltext .= "\n".$blogpostfooter;
 
 		$language = ($obj->language && $obj->language != '*' ? $obj->language : 'en');