Problem saving query in CronJob with & symbol

Hello!
CyberPanel Current Version 2.3.
Problem saving request in CronJob.
There is a request in the form:

/usr/bin/wget --no-check-certificate -O - -q -t 1 'https://ххх.top/index.php?route=extension/module/novaposhta_cron/update&type=cities&key=5689a072292866eb5eea3d882fa4bb151908280036dd35a36cd93bb424114ffbe0987b86fd'

After saving, the request looks like:

/usr/bin/wget --no-check-certificate -O - -q -t 1 https://ххх.top/index.php?route=extension/module/novaposhta_cron/update

The request is cut off after the & symbol.
What to do, how to solve this?

The problem is solved if the query is wrapped in " instead of ’ then the full query is saved:

/usr/bin/wget --no-check-certificate -O - -q -t 1 "https://ххх.top/index.php?route=extension/module/novaposhta_cron/update&type=cities&key=5689a072292866eb5eea3d882fa4bb151908280036dd35a36cd93bb424114ffbe0987b86fd"

After that I rebooted CronJob with the command:
/etc/init.d/cron restart

Everything works, maybe it will be useful to someone.