------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. http://bugs.kde.org/show_bug.cgi?id=125441 koos.vriezen xs4all nl changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From koos.vriezen xs4all nl 2006-04-12 22:09 ------- SVN commit 529229 by vriezen: Only set path on composed new URL if there wasn't any set BUG: 125441 M +2 -1 kmplayer_part.cpp --- trunk/extragear/multimedia/kmplayer/src/kmplayer_part.cpp #529228:529229 @ -410,7 +410,8 @ int p = _url.port (); if (p > 0) u.setPort (p); - u.setPath (u.path (1) + _url.host () + _url.path ()); + if (u.path ().isEmpty ()) + u.setPath (QChar ('/') + _url.host ()); if (allowRedir (u)) { url = u; kdDebug () << "KMPlayerPart::openURL compose " << m_file_name << " " << _url.url() << " ->" << u.url() << endl;