Cannot invoke "java.lang.CharSequence.length()" because "this.text" is null
Description
971: // Get path_info & script name 972: // Replace any duplicate slashes with 1 just in case 973: results[ "pathInfo" ] = trim( 974: reReplace( 975: getCGIElement( "path_info", arguments.event ),
Activity
Show:
Brad Wood October 17, 2024 at 7:20 PM
I assume cgi.path_info is null. So the question becomes, is the fix that the cgi var should never be null, or should the rereplace BIF handle null differently when it’s passed?
Fixed
Pinned fields
Click on the next to a field label to start pinning.
971: // Get path_info & script name
972: // Replace any duplicate slashes with 1 just in case
973: results[ "pathInfo" ] = trim(
974: reReplace(
975: getCGIElement( "path_info", arguments.event ),