user should set into session before postLogin hook otherwise it will break not only the files_encryption app

remotes/origin/stable6
Florin Peter 12 years ago
parent d85a10ebc5
commit b840de4e01
  1. 2
      lib/user/session.php

@ -116,8 +116,8 @@ class Session implements Emitter {
if ($user) {
$result = $user->checkPassword($password);
if ($result and $user->isEnabled()) {
$this->manager->emit('\OC\User', 'postLogin', array($user, $password));
$this->setUser($user);
$this->manager->emit('\OC\User', 'postLogin', array($user, $password));
return true;
} else {
return false;

Loading…
Cancel
Save