Topic: Make the "RESTART" button default, so RETURN actions it
I've long cursed the PHP SESSION EXPIRED popup, and have only recently come up with a tiny panacea for it (which is only useful on a Desktop PC or device with a keyboard).
If you edit /www/cal/pages/alert.php to add "autofocus" to the RESTART button as shown below, pressing RETURN is all you need to do to restart the page.
$rButton = "<button type='button' onclick=\"window.location = window.location.h ref.split('?')[0];\" autofocus>{$xx['restart']}</button>\n"; //restart button
This works on Edge (so presumably also Chrome) but I've not tested it with any other browsers.
Note that the code above has a space added in "h ref" to get around the block for posting URLs, so be careful if you copy this line directly into your own calendar.
- G.