Skip to content

Commit

Permalink
Merge pull request opencart#13819 from condor2/patch-1
Browse files Browse the repository at this point in the history
[3.0.x.x] Fixed undefinited index: id google advertise controller
  • Loading branch information
mhcwebdesign committed Mar 27, 2024
2 parents ad05210 + e04cce0 commit 5b99242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upload/admin/controller/extension/advertise/google.php
Original file line number Diff line number Diff line change
Expand Up @@ -1687,7 +1687,7 @@ public function admin_link(&$route, &$data, &$template) {
}

foreach ($data['menus'] as &$menu) {
if ($menu['id'] == 'menu-marketing') {
if (isset($menu['id']) && $menu['id'] == 'menu-marketing') {
$children = array();

$this->load->model('setting/store');
Expand Down

0 comments on commit 5b99242

Please sign in to comment.