@Dan Dan
It is only notice, you should disable them in production website.
Anyway you can fix it by rewritting code:
if ($ _ GET [ 'redirect_active'] == 1 and $ _GET [ 'url_go'] <> '' and $ _GET [ 'campaign'] <> '') {
into:
if (isset($_GET [ 'redirect_active']) && isset($_GET [ 'url_go']) && isset($_GET [ 'campaign']) && $_GET [ 'redirect_active'] == 1 and $_GET [ 'url_go'] <> '' and $_GET [ 'campaign'] <> '') {