From: SourceForge.net <no...@so...> - 2012-09-08 15:49:59
|
Bugs item #3565810, was opened at 2012-09-08 08:49 Message generated for change (Tracker Item Submitted) made by djculex You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=430840&aid=3565810&group_id=41586 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: XOOPS 2.6.x Status: Open Resolution: None Priority: 5 Private: No Submitted By: Michael Albertsen (djculex) Assigned to: Nobody/Anonymous (nobody) Summary: drag n' drop issue Initial Comment: Drag 'n drop stop working in 2.6.0 alpha 1 It's due to double including jquery.ui. One inclusion from /media/jquery/plugins/ wich is UI version 1.70 AND another including from /media/plugins/ui/ wich is the new ui version 1.83... Problem is the old overwrites the new in the header giving dom error "d is undefined" in the browser.. Solution is to locate [code] addScript($xoops->url('/media/jquery/plugins/jquery.ui.js')); [/code] and replace with [code] addScript($xoops->url('/media/jquery/ui/jquery.ui.js')); [/code] in all of the following files Modules/Banners/index.php Modules/Banners/banners.php Modules/Banners/clients.php Modules/protector/Admin/Advisory.php Modules/System/Admin/blocksadmin/Main.php Modules/System/Themes/Default/Default.php ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=430840&aid=3565810&group_id=41586 |