Skip to content

Commit

Permalink
Remove needless additional isset argument (joomla#41968)
Browse files Browse the repository at this point in the history
  • Loading branch information
Denitz authored Jan 29, 2024
1 parent f184616 commit af1ca89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/com_tags/src/Helper/RouteHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ protected static function _findItem($needles = null)

if ($items) {
foreach ($items as $item) {
if (isset($item->query, $item->query['view'])) {
if (isset($item->query['view'])) {
$lang = ($item->language != '' ? $item->language : '*');

if (!isset(self::$lookup[$lang])) {
Expand Down

0 comments on commit af1ca89

Please sign in to comment.