Bug #698
Merging #Feature 573 broke #Feature 548 (sunstone location independant)
Status: | Closed | Start date: | 06/25/2011 | |
---|---|---|---|---|
Priority: | High | Due date: | ||
Assignee: | Jaime Melis | % Done: | 0% | |
Category: | - | |||
Target version: | - | |||
Resolution: | fixed | Pull request: | ||
Affected Versions: |
Description
It seems that merging branch Feature #573 broke Feature #548.
After merging, file src/sunstone/views/index.erb loads plugins from "/js/..." instead of "js/...", which doesn't work with reverse proxy.
Line 32:
<script type="text/javascript" src="/js/plugins/<%= plugin %>"></script>
replace with
<script type="text/javascript" src="js/plugins/<%= plugin %>"></script>
Line 39
<script type="text/javascript" src="/js/user-plugins/<%= plugin %>"></script>
replace with
<script type="text/javascript" src="js/user-plugins/<%= plugin %>"></script>
Associated revisions
Bug #698: Merging Feature 573 broke Feature 548 (sunstone location independant)
History
#1 Updated by Jaime Melis about 10 years ago
- Status changed from New to Closed
- Resolution set to fixed
Patch suggested by Patrice Lachance applied. Thanks for reporting this.