CVS commit by esben: dollarsigns $ were not escaped prior to calling KConfigBase::writePathEntry() BUG: 70618 M +1 -1 urlgrabber.cpp 1.48 --- kdebase/klipper/urlgrabber.cpp #1.47:1.48 @@ -481,5 +481,5 @@ void ClipAction::save( KConfig *kc ) con kc->setGroup( group.arg( i ) ); - kc->writePathEntry( "Commandline", cmd->command ); + kc->writePathEntry( "Commandline", cmd->command.replace( "$","$$" )); kc->writeEntry( "Description", cmd->description ); kc->writeEntry( "Enabled", cmd->isEnabled );