PHP Warnings in debug mode
-
I recently installed Letter Avatars in a new development enviroment and noticed several warnings due to undefined variables:
Undefined index: shape in letter-avatars/lib/frontend/Utils.php on line 38
Undefined index: case in letter-avatars/lib/frontend/Utils.php on line 41
Solution: Either make sure durin initialization that all required settings have default values or add
isset()
where needed like this:'{{LTRAV_BORDER_RADIUS}}' => (isset($style_opts['shape']) && $style_opts['shape'] == 'round') ? '50%' : '0',
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘PHP Warnings in debug mode’ is closed to new replies.