Defect #2018
closedPlugin configuration frames are overwritten when you install a new plugin
0%
Description
Hi,
I'm having problem with redmine trunk version.
I have installed budget_plugin, and its config options from "Information" menu are ok (3 items to configure)
When I install timesheet_plugin, budget_plugin options are removed and only "List size" option appears.
If I remove timesheet_plugin, budget_plugin options works again.
It isn't a problem with timesheet, because I can reproduce it with anothers plugins.
I can't find any bug relationated with this issue (sorry if it is dup)
Thanks you
Related issues
Updated by Eric Davis about 16 years ago
- Status changed from New to Closed
- Target version deleted (
0.8)
This is caused by r1723, allowing plugins to override the views. Since the example plugin used settings/_settings.rhtml
that template was copied to each plugin I wrote. But after r1723, each plugin can override the previous plugins' settings partial. Since Timesheet is the last one, it's the one used. My latest plugin works around this by using a different partial for the settings.
http://github.com/edavis10/redmine-google-analytics-plugin/tree/master/app/views/settings
This isn't a Redmine bug but a change from Redmine that affected (my) plugins.