Skip to content

Commit

Permalink
[PHP 8.1] Fix Deprecated notice: strtolower(): Passing null to string…
Browse files Browse the repository at this point in the history
… is deprecated in components/com_ajax/ajax.php on line 39 (#37007)

Fix Deprecated: strtolower(): Passing null to parameter #1 ($string) of type string is deprecated in components/com_ajax/ajax.php on line 39
  • Loading branch information
beat authored Feb 22, 2022
1 parent 3808e2a commit 03c0fc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/com_ajax/ajax.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
$input = $app->input;

// Requested format passed via URL
$format = strtolower($input->getWord('format'));
$format = strtolower($input->getWord('format', ''));

// Initialize default response and module name
$results = null;
Expand Down

0 comments on commit 03c0fc6

Please sign in to comment.