Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.
Hi,
I's impossible to remove assignment when user name containe a ' character.
The ' is not "protected" in the HTML generated:
Here is the buggy javascript code:
removeAssignment('44','0','Sébastien PRUD'HOMME');
Hi,
bug confirmed and fixed.
fixing is : replace in /tool/objectDetail.php, line 1661 :
. SqlList::getNameFromId('Resource', $assignment->idResource) . "'" . ');" '
with
. htmlEncode(SqlList::getNameFromId('Resource', $assignment->idResource),'quotes') . "'" . ');" '
Ticket #685 registered.
Thanks for reporting.