[Yesterday 12:57 PM] Mills, Ed
Our HTML for has this:
<input type='hidden' id='dir' name='dir' value='datasets/open/2023-06-07_09:54:40'>
<input type='hidden' i… (read more)
[Yesterday 12:57 PM] Mills, Ed
Our HTML for has this:
<input type='hidden' id='dir' name='dir' value='datasets/open/2023-06-07_09:54:40'>
<input type='hidden' id='fileCount' name='fileCount' value='0'>
When posted , both IE and Chrome have:
$vars{dir} = 'datasets/open/2023-06-07_09:54:40'
$vars{fileCount}=0
BUT, Firefox 114.0 has only this:
$vars{dir} = 0
Since it appeared that firefox was somehow "merging" the two tags into one, I reversed the order to this to see if the new first var would post. But instead, now this works 100% fine:
<input type='hidden' id='fileCount' name='fileCount' value='0'>
<input type='hidden' id='dir' name='dir' value='datasets/open/2023-06-07_09:54:40'>
The system is working again. chatAI suggested a few things like updating firefox (I did) , but nothing they suggested worked. Only my reversal worked.
Thoughts?