Fixes work item: 30805 - Problems logging out.

#U4-88 - MySQL error when logging out of 4.7.2.
Tested against MySQL 5.1.
This commit is contained in:
leekelleher
2012-07-03 14:56:07 -01:00
parent 787afa3c36
commit 6e0c4b7fdb

View File

@@ -234,8 +234,8 @@ namespace umbraco.BasePages {
private void deleteLogin()
{
SqlHelper.ExecuteNonQuery(
"DELETE umbracoUserLogins WHERE contextId = @contextId",
SqlHelper.CreateParameter("@contextId", umbracoUserContextID));
"DELETE FROM umbracoUserLogins WHERE contextId = @contextId",
SqlHelper.CreateParameter("@contextId", umbracoUserContextID));
}
private void updateLogin()