[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Debian JP master SVN www commits (rev.1131)
=======================================================
Repository: /org/svn.debian.or.jp/repos
Revision: 1131
Commiter: henrich
Date: 2011-02-26 00:33:42 +0900 (土, 26 2月 2011)
=======================================================
Log:
test commit - try to not use strip_html function
If this would be wrong, I'll revert
=======================================================
Changed:
U www/trunk/blosxom/plugins/rss10
Modified: www/trunk/blosxom/plugins/rss10
===================================================================
--- www/trunk/blosxom/plugins/rss10 2011-02-25 15:07:38 UTC (rev 1130)
+++ www/trunk/blosxom/plugins/rss10 2011-02-25 15:33:42 UTC (rev 1131)
@@ -32,8 +32,8 @@
sub story {
my($pkg, $path, $filename, $story_ref, $title_ref, $body_ref) = @_;
- $title = &strip_html($$title_ref);
- $description = &strip_html($$body_ref);
+ $title = $$title_ref;
+ $description = $$body_ref;
$items .= qq{ <rdf:li rdf:resource="$blosxom::url$path/$filename.html"/>\n};
1;