Fix for Reloading bug

This commit is contained in:
saurabhbhatia 2013-11-13 13:02:20 +08:00
parent 635f82db2f
commit 2e5b3e8ef7
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ module ParserFrontEnd
ret = ''
part = PagePart.find(front['part_id']) if front['part_id']
ret << eval("\"#{front['path']}\"") rescue ''
ret << (ret.include?("?") ? "&#{args.to_param}" : "?#{args.to_param}") if args
ret << (ret.include?("?") ? "&#{args.to_param}" : "?#{args.to_param}") unless args.nil?
fragment = Nokogiri::HTML::DocumentFragment.new(body, "<div class='dymanic_load widget' path='#{ret}'></div>")
end
front.swap(fragment)