Advanced search  

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Pages: [1]   Go Down

Author Topic: form elements not selectable with mozilla*  (Read 3735 times)

0 Members and 1 Guest are viewing this topic.

mrshark

  • Coppermine newbie
  • Offline Offline
  • Posts: 4
form elements not selectable with mozilla*
« on: August 21, 2004, 08:09:35 am »

after upgrading to cpg 1.3.1 from 1.3.0, now on my site http://www.slide-show.net/galleria is not possible to access textual form elements with mozilla. If someone uploads images, when he has to insert titles and descriptions soon after, form elements are non selectable, my mouse click and by the tab key (it simply passes on, as they are not there!), too. This is true for mozilla firefox and mozilla navigator, latest versions for both. IE works... Any help? if it can help, i can create e temporary account on my site, to test it...
Logged

Nibbler

  • Guest
Re: form elements not selectable with mozilla*
« Reply #1 on: August 21, 2004, 08:26:42 am »

You have javascript in your theme blocking the mouse clicks
Code: [Select]
<SCRIPT LANGUAGE="JavaScript" type="text/javascript" >
<!--
document.oncontextmenu = function(){return false}
if(document.layers) {
window.captureEvents(Event.MOUSEDOWN);
window.onmousedown = function(e){
if(e.target==document)return false;
}
}
else {
document.onmousedown = function(){return false}
}
//-->
</SCRIPT>

Remove that and you'll be fine.
Logged
Pages: [1]   Go Up
 

Page created in 0.018 seconds with 19 queries.