From kfm-devel Sun Feb 08 12:10:32 2004 From: Antonio Larrosa Jimenez Date: Sun, 08 Feb 2004 12:10:32 +0000 To: kfm-devel Subject: kdeaddons/konq-plugins/webarchiver Message-Id: <20040208121032.B5F0F9145 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kfm-devel&m=107624760829692 CVS commit by antlarr: I'm not very sure of why, but now DOM::Attr::name().string() returns the string in lower case, while previously it was always uppercase, so this failed when doing a case-sensitive comparison to uppercase names CCing kfm-devel just in case it can be considered a regression CCMAIL:kfm-devel@kde.org, khtml-cvs@kde.org M +1 -1 archivedialog.cpp 1.5 --- kdeaddons/konq-plugins/webarchiver/archivedialog.cpp #1.4:1.5 @@ -213,5 +213,5 @@ void ArchiveDialog::saveArchiveRecursive for( unsigned int j=0; j(attrs.item(j)); - attrName = attr.name().string(); + attrName = attr.name().string().upper(); attrValue = attr.value().string();