Can see no PHP error in the logs
reseting a single key is no issue
But all blank ones no longer works
The actions are very simular
key
Code: Select all
$GLOBALS['db']->query("update orders set clubosc_key = '" . Keys::serialise() . "' where orders_id = " . (int)$_GET['oID']);
$admin_hooks->set('setKeyAction', 'zz_send_message', function () {
$GLOBALS['messageStack']->add_session(SUCCESS_KEY_UPDATED, 'success');
});
return $link;Code: Select all
Keys::setBlankKeys();
$admin_hooks->cat('setKeysAction', 'zz_send_message', function () {
$GLOBALS['messageStack']->add_session(SUCCESS_KEYS_UPDATED, 'success');
});
return $link;PHP8.3
Pheonix 1.1.0.3
Any clues?
David