Skip to content

Commit

Permalink
[3.0.x.x] Fixed undefinited index: id google controller
Browse files Browse the repository at this point in the history
  • Loading branch information
condor2 committed Mar 27, 2024
1 parent ad05210 commit e04cce0
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 e04cce0

Please sign in to comment.