Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Example of null coalescing assignment operator.
Craig, see if this works. $allow_view_other = ( ( $ALLOW_VIEW_OTHER ??= 'Y' ) === 'Y' ); if $ALLOW_VIEW_OTHER is undefined or null, assign 'Y'. In this case the default from default_config.php. Then see if it's === 'Y'
- Loading branch information