Skip to content

Commit

Permalink
Fix #794, wrong DB name was specified in addSessionLog()
Browse files Browse the repository at this point in the history
  • Loading branch information
pH-7 committed Jul 12, 2020
1 parent b837c25 commit 8ed3069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _protected/framework/Mvc/Model/Security.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public function addLoginLog($sEmail, $sUsername, $sPassword, $sStatus, $sTable =
*
* @return void
*/
public function addSessionLog($iProfileId, $sEmail, $sFirstName, $sTable = DbTableName::MEMBER_LOG_LOGIN)
public function addSessionLog($iProfileId, $sEmail, $sFirstName, $sTable = DbTableName::MEMBER_LOG_SESS)
{
Various::checkModelTable($sTable);

Expand Down

0 comments on commit 8ed3069

Please sign in to comment.