From 0cacfb7c05dabe47f5dad45a70153f95fc64c08f Mon Sep 17 00:00:00 2001 From: chris Date: Wed, 6 Feb 2013 18:14:24 +0800 Subject: [PATCH] Fix path error in parser for breadcrumb --- lib/parsers/parser_front_end.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/parsers/parser_front_end.rb b/lib/parsers/parser_front_end.rb index e706e5cc..385b4f82 100644 --- a/lib/parsers/parser_front_end.rb +++ b/lib/parsers/parser_front_end.rb @@ -98,7 +98,7 @@ module ParserFrontEnd page_breadcrumb = body.css('.page_breadcrumb').first if page_breadcrumb res = "
" - res << "
" + res << "
" res << "
" fragment = Nokogiri::HTML::DocumentFragment.new(body, res) page_breadcrumb.swap(fragment)