File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
adm_program/system/classes Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -351,7 +351,7 @@ public function regenerateId()
351
351
public function reloadAllSessions ()
352
352
{
353
353
$ sql = 'UPDATE ' . TBL_SESSIONS . ' SET ses_reload = true ' ;
354
- $ this ->db ->queryPrepared ($ sql);
354
+ $ this ->db ->queryPrepared ($ sql, array (), false ); // don't show error because column ses_reload doesn't exist within update from version 3.x
355
355
}
356
356
357
357
/**
@@ -363,7 +363,7 @@ public function reload(int $userId)
363
363
{
364
364
$ sql = 'UPDATE ' . TBL_SESSIONS . ' SET ses_reload = true
365
365
WHERE ses_usr_id = ? -- $userId ' ;
366
- $ this ->db ->queryPrepared ($ sql , array ($ userId ));
366
+ $ this ->db ->queryPrepared ($ sql , array ($ userId ), false ); // don't show error because column ses_reload doesn't exist within update from version 3.x
367
367
}
368
368
369
369
/**
You can’t perform that action at this time.
0 commit comments