krileon wrote: I've been testing the legacy INI parsing and could not duplicate this issue. I'm wondering if it's something specific in the code causing it. If possible please provide the code that's causing problems.
At my side I had for example this PHP (create_function) code:
Code:
$_POST['username'] = 'Username' . uniqid() . 'x';
I had also another action with JS code such this one:
Code:
function unhideme(divID) {
var item = document.getElementById(divID);
if (item) {
item.className=(item.className=='hiddenme')?'unhiddenme':'hiddenme';
}
}
All code of all action has been stripped out.
Maybe a conflict with some other CB stuff ?