| Summary: | Firefox's default plugins folder ($HOME/.mozilla/plugins) not listed in control module (confusing to new users) | ||
|---|---|---|---|
| Product: | [Unmaintained] kcontrol | Reporter: | Hugo Rodrigues <rodrigueshugo> |
| Component: | kcmkonqhtml | Assignee: | Konqueror Bugs <konqueror-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | ||
| Priority: | NOR | ||
| Version First Reported In: | 2.0 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | Patch to add the new folder to Kcontrol's module | ||
|
Description
Hugo Rodrigues
2005-06-18 19:41:04 UTC
Created attachment 11503 [details]
Patch to add the new folder to Kcontrol's module
This is the simple patch that adds the new folder to the default Kcontrol
module.
(It's my first patch for KDE :P)
SVN commit 426867 by thiago:
Adding $HOME/.mozilla/plugins to the search path list. According to
comment on the file, it should be kept in sync with
nsplugins/pluginscan, and that path is already there.
Many thanks to Hugo Rodrigues for providing the patch.
BUG:107676
M +1 -0 pluginopts.cpp
--- trunk/KDE/kdebase/kcontrol/konqhtml/pluginopts.cpp #426866:426867
@@ -392,6 +392,7 @@
if ( config->hasKey( "scanPaths" ) )
paths = config->readListEntry( "scanPaths" );
else {//keep sync with kdebase/nsplugins/pluginscan
+ paths.append("$HOME/.mozilla/plugins");
paths.append("$HOME/.netscape/plugins");
paths.append("/usr/lib64/browser-plugins");
paths.append("/usr/lib/browser-plugins");
|