diff options
author | Darrell Anderson <[email protected]> | 2012-04-12 23:48:24 -0500 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-06-04 03:25:51 +0200 |
commit | c87392e7d5a650657a59da3798d9e088561fd7d4 (patch) | |
tree | 62488e71e8e75f6567d40f158f8340fca3cfef88 /konq-plugins | |
parent | 74c4dbba5b6ff54754ecf78ab72841372483b15f (diff) | |
download | tdeaddons-c87392e7d5a650657a59da3798d9e088561fd7d4.tar.gz tdeaddons-c87392e7d5a650657a59da3798d9e088561fd7d4.zip |
Fix inadvertent "TQ" changes.
(cherry picked from commit 3b07e4ebbf115f8de8fd2623d2019757f8f7b4f4)
Diffstat (limited to 'konq-plugins')
-rw-r--r-- | konq-plugins/webarchiver/archivedialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/konq-plugins/webarchiver/archivedialog.cpp b/konq-plugins/webarchiver/archivedialog.cpp index 24b49b8..891e0de 100644 --- a/konq-plugins/webarchiver/archivedialog.cpp +++ b/konq-plugins/webarchiver/archivedialog.cpp @@ -242,7 +242,7 @@ void ArchiveDialog::saveArchiveRecursive(const DOM::Node &pNode, const KURL& bas /* Skip BASE, everything is relative to index.html * Saving SCRIPT but they can cause trouble! */ - } else if ((nodeName == "META") && hasAttribute(pNode, "HTTP-ETQUIV", "CONTENT-TYPE")) { + } else if ((nodeName == "META") && hasAttribute(pNode, "HTTP-EQUIV", "CONTENT-TYPE")) { /* Skip content-type meta tag, we provide our own. */ } else { |