If you get an infinite loop error after upgrading for codename get_option, edit sources/config.php. function get_option.
Find check_for_infinite_loop('get_option', [$name, false], 2); . Change to check_for_infinite_loop('get_option', [$name, false], 10); . This will cause infinite loop checking to be more lenient. Maybe bump the number higher if the error continues (not too high; if it is still looping after, say, 25, then it is an actual bug).
Find check_for_infinite_loop('get_option', [$name, false], 2); . Change to check_for_infinite_loop('get_option', [$name, false], 10); . This will cause infinite loop checking to be more lenient. Maybe bump the number higher if the error continues (not too high; if it is still looping after, say, 25, then it is an actual bug).