57
Quote:
Mamba Quote: I can confirm that blocks are not draggable. Hmm, don't have these problems with PHP 5.3.15 and PHP 5.4.5 Can somebody else confirm the issues, and specify the platform they are using?
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
addScript($xoops->url('/media/jquery/plugins/jquery.ui.js'));
and replace with
addScript($xoops->url('/media/jquery/ui/jquery.ui.js'));
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
I have posted in tracker also
drag n' drop issue
Programming is like sex:
One mistake and you have to support it for the rest of your life.