Hi,
One of 6.2.2 fixes was not well done: https://sourceforge.net/p/projectorria/code/3962/#diff-10
Could you please change:
} else if (dojo.byId('objectClass') && dojo.byId('objectId')) {
var url = '../tool/getObjectCreationInfo.php?objectClass='+ dojo.byId('objectClass').value +'&objectId='+dojo.byId('objectId').value;
loadDiv(url, 'buttonDivCreationInfo', null);
if (validationType != 'note' && validationType != 'attachment') {
formInitialize();
}
hideWait();
}
into
} else {
if (dojo.byId('objectClass') && dojo.byId('objectId')) {
var url = '../tool/getObjectCreationInfo.php?objectClass='+ dojo.byId('objectClass').value +'&objectId='+dojo.byId('objectId').value;
loadDiv(url, 'buttonDivCreationInfo', null);
}
if (validationType != 'note' && validationType != 'attachment') {
formInitialize();
}
hideWait();
}
in projeqtor.js at line ~1420
Have a look at code of version 6.1.x if you don’t understand why this should be done like this.
Thanks,
You're right.
Thanks for the fix.
on my instal this modification not run. Without error but no login are possible.
Make sure you didn’t forget a bracket and share with us your JavaScript console logs.
very strange I re test for record js console log and the login is OK .... Sorry And after a check i have omit a { caracter after the first ELSE. Sorry again 🙂