diff options
Diffstat (limited to 'template/standard')
-rw-r--r-- | template/standard/html/feed/item_page.php | 4 | ||||
-rw-r--r-- | template/standard/html/feed/item_post.php | 4 | ||||
-rw-r--r-- | template/standard/html/home.php | 2 | ||||
-rw-r--r-- | template/standard/html/page/item.php | 2 | ||||
-rw-r--r-- | template/standard/html/page/main.php | 2 | ||||
-rw-r--r-- | template/standard/html/post/item.php | 2 | ||||
-rw-r--r-- | template/standard/html/post/main.php | 2 | ||||
-rw-r--r-- | template/standard/html/user/item.php | 2 | ||||
-rw-r--r-- | template/standard/html/user/main.php | 2 |
9 files changed, 11 insertions, 11 deletions
diff --git a/template/standard/html/feed/item_page.php b/template/standard/html/feed/item_page.php index f1a7a4d..25d7d30 100644 --- a/template/standard/html/feed/item_page.php +++ b/template/standard/html/feed/item_page.php @@ -13,10 +13,10 @@ <guid isPermaLink="false"><?=$PAGE['GUID']?></guid> <pubDate><?=parseDatetime($PAGE['ATTR']['TIME_INSERT'], '[RFC2822]')?></pubDate> <dc:creator><?=escapeHTML($USER['ATTR']['FULLNAME'])?></dc:creator> - <description><?=escapeHTML(description($PAGE['BODY']['HTML'], 400))?></description> + <description><?=escapeHTML(description($PAGE['BODY']['HTML'](), 400))?></description> <content:encoded> <![CDATA[ - <?=$PAGE['BODY']['HTML']?> + <?=$PAGE['BODY']['HTML']()?> ]]> </content:encoded> <?php foreach($PAGE['FILE']['LIST'] as $fileURL): ?> diff --git a/template/standard/html/feed/item_post.php b/template/standard/html/feed/item_post.php index d645810..7f477d6 100644 --- a/template/standard/html/feed/item_post.php +++ b/template/standard/html/feed/item_post.php @@ -13,10 +13,10 @@ <guid isPermaLink="false"><?=$POST['GUID']?></guid> <pubDate><?=parseDatetime($POST['ATTR']['TIME_INSERT'], '[RFC2822]')?></pubDate> <dc:creator><?=escapeHTML($USER['ATTR']['FULLNAME'])?></dc:creator> - <description><?=escapeHTML(description($POST['BODY']['HTML'], 400))?></description> + <description><?=escapeHTML(description($POST['BODY']['HTML'](), 400))?></description> <content:encoded> <![CDATA[ - <?=$POST['BODY']['HTML']?> + <?=$POST['BODY']['HTML']()?> ]]> </content:encoded> <?php foreach($POST['FILE']['LIST'] as $fileURL): ?> diff --git a/template/standard/html/home.php b/template/standard/html/home.php index 9909dc1..64206e9 100644 --- a/template/standard/html/home.php +++ b/template/standard/html/home.php @@ -16,4 +16,4 @@ <?php endforeach; ?> </ul> -<?=$PAGINATION['HTML']?>
\ No newline at end of file +<?=$PAGINATION['HTML']?> diff --git a/template/standard/html/page/item.php b/template/standard/html/page/item.php index d0058e7..6065354 100644 --- a/template/standard/html/page/item.php +++ b/template/standard/html/page/item.php @@ -15,6 +15,6 @@ </h2> </header> <blockquote cite="<?=$PAGE['URL']?>"> - <p><?=excerpt($PAGE['BODY']['HTML'], 600)?></p> + <p><?=excerpt($PAGE['BODY']['HTML'](), 600)?></p> </blockquote> </li>
\ No newline at end of file diff --git a/template/standard/html/page/main.php b/template/standard/html/page/main.php index 621b939..3b62571 100644 --- a/template/standard/html/page/main.php +++ b/template/standard/html/page/main.php @@ -14,7 +14,7 @@ $time = "<time datetime=\"{$PAGE['ATTR']['TIME_INSERT']}\" title=\"".parseDateti <p><?=$Language->template('page_main_heading_desc', [$user, $time])?></p> <section id="content" class="page"> - <?=$PAGE['BODY']['HTML']?> + <?=$PAGE['BODY']['HTML']()?> </section> <section id="site-navi"> diff --git a/template/standard/html/post/item.php b/template/standard/html/post/item.php index f0c12d5..19ff3f9 100644 --- a/template/standard/html/post/item.php +++ b/template/standard/html/post/item.php @@ -15,6 +15,6 @@ </h2> </header> <blockquote cite="<?=$POST['URL']?>"> - <?=$POST['BODY']['HTML']?> + <?=$POST['BODY']['HTML']()?> </blockquote> </li>
\ No newline at end of file diff --git a/template/standard/html/post/main.php b/template/standard/html/post/main.php index 5104ba9..22974dc 100644 --- a/template/standard/html/post/main.php +++ b/template/standard/html/post/main.php @@ -14,7 +14,7 @@ $time = "<time datetime=\"{$POST['ATTR']['TIME_INSERT']}\" title=\"".parseDateti <p><?=$Language->template('post_main_heading_desc', [$user, $time])?></p> <section id="content" class="post"> - <?=$POST['BODY']['HTML']?> + <?=$POST['BODY']['HTML']()?> </section> <section id="site-navi"> diff --git a/template/standard/html/user/item.php b/template/standard/html/user/item.php index 65dce5b..3a33c51 100644 --- a/template/standard/html/user/item.php +++ b/template/standard/html/user/item.php @@ -15,6 +15,6 @@ </h2> </header> <blockquote cite="<?=$USER['URL']?>"> - <?=$USER['BODY']['HTML']?> + <?=$USER['BODY']['HTML']()?> </blockquote> </li>
\ No newline at end of file diff --git a/template/standard/html/user/main.php b/template/standard/html/user/main.php index c2a5346..473b00b 100644 --- a/template/standard/html/user/main.php +++ b/template/standard/html/user/main.php @@ -11,7 +11,7 @@ <p><em><?=$Language->template('user_main_heading_desc', [escapeHTML($USER['ATTR']['USERNAME']), $COUNT['POST'], $COUNT['PAGE']])?></em></p> <section id="content" class="user"> - <?=$USER['BODY']['HTML']?> + <?=$USER['BODY']['HTML']()?> </section> <section id="site-navi"> |