Skip to content

Commit

Permalink
don't display language, it's all english anyway
Browse files Browse the repository at this point in the history
  • Loading branch information
digitaltom committed Aug 25, 2011
1 parent b7ee1fb commit 11ce733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/IndicoXmlConverter/convert.rb
Expand Up @@ -71,7 +71,7 @@ def escape_xml(input)
event << XML::Node.new("track", track ) event << XML::Node.new("track", track )
type = talk.find_first( "type/name" ).nil? ? "unknown" : talk.find_first( "type/name" ).content type = talk.find_first( "type/name" ).nil? ? "unknown" : talk.find_first( "type/name" ).content
event << XML::Node.new("type", type ) event << XML::Node.new("type", type )
event << XML::Node.new("language", "en" ) event << XML::Node.new("language", "" )
event << XML::Node.new("abstract", " " ) event << XML::Node.new("abstract", " " )
event << XML::Node.new("description", escape_xml( talk.find_first( "abstract" ).content ) ) event << XML::Node.new("description", escape_xml( talk.find_first( "abstract" ).content ) )
persons = XML::Node.new("persons") persons = XML::Node.new("persons")
Expand Down

0 comments on commit 11ce733

Please sign in to comment.