Skip to content

Commit

Permalink
Yes, thanks !
Browse files Browse the repository at this point in the history
Co-authored-by: Quy <[email protected]>
  • Loading branch information
joomdonation and Quy authored Aug 28, 2021
1 parent d007d1d commit 06c13b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/com_weblinks/router.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function build(&$query)
}

// Are we dealing with an weblink that is attached to a menu item?
if (isset($query['view']) && ($mView == $query['view']) && (isset($query['id'])) && ($mId == (int) $query['id']))
if (isset($query['view']) && ($mView == $query['view']) && isset($query['id']) && ($mId == (int) $query['id']))
{
unset($query['view']);
unset($query['catid']);
Expand Down

0 comments on commit 06c13b6

Please sign in to comment.