share + pwa + fixes

This commit is contained in:
Local Dev
2025-08-18 05:22:29 -04:00
parent b73672d5e6
commit db346b1a9d
27 changed files with 446 additions and 321 deletions

View File

@ -59,7 +59,7 @@ class Sessions extends DatabaseModel {
public function checkSession( $sessionID ) {
$user = new User;
// @todo lets put this on some sort of realistic checking regime other than check everything every time
if ( $sessionID == false ) {
if ( empty( $sessionID ) ) {
Debug::log( 'sessionID false' );
return false;
}