| Summary: | Web shortcuts are case sensitive but errors don't reflect that | ||
|---|---|---|---|
| Product: | [Applications] konqueror | Reporter: | Mark Williamson <maw48> |
| Component: | general | Assignee: | Konqueror Bugs <konqueror-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | andygoossens, brendon, cfeck, faure, kde |
| Priority: | NOR | ||
| Version First Reported In: | 4.1.0 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Mark Williamson
2008-08-25 17:59:22 UTC
Bug still exists in 4.3.1. *** Bug 216596 has been marked as a duplicate of this bug. *** can someone review this patch and tell me if i can commit ?
Index: kio/kio/kurifilter.cpp
===================================================================
--- kio/kio/kurifilter.cpp (révision 1062473)
+++ kio/kio/kurifilter.cpp (copie de travail)
@@ -90,7 +90,7 @@
KUriFilterData::KUriFilterData( const QString& url )
: d( new KUriFilterDataPrivate( KUrl(url), url ) )
{
- d->typedString = url;
+ d->typedString = url.toLower();
}
sorry i forgot to tell on my commit log but this is now fixed in kde 4.4 and in trunk: 4.4 commit : http://websvn.kde.org/?view=revision&revision=1083502 trunk commit : http://websvn.kde.org/?view=revision&revision=1083503 |