Rainie3535 / sigil

Automatically exported from code.google.com/p/sigil
GNU General Public License v3.0
0 stars 0 forks source link

Metadata::FreeFormMetadata, line 360 #1242

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
In the conversion from Sigil 0.4.2 to 0.5.0 you have forgotten an assignment.

Line 360 of Metadata.cpp reads:

        name.at( 0 ).toUpper() + name.mid( 1 );

It should be

        name = name.at( 0 ).toUpper() + name.mid( 1 );

The problem is that the all meta tags from an HTML file will not be imported 
into the EPUB.

Thanks for fixing!

Original issue reported on code.google.com by freiesma...@googlemail.com on 7 Feb 2012 at 7:32

GoogleCodeExporter commented 9 years ago
Thanks for catching this. Revision: 361fc2467baa.

Original comment by john@nachtimwald.com on 7 Feb 2012 at 10:51