my functions have become extra strict about passing ALL of the arguments now instead of just what I need)
This used to work
function namedFunction($avar, $bvar, $cvar){
.......
}
echo namedFunction('a','b');
Now NOTHING works unless I pass
echo namedFunction('a','b','');