1
0
miroir de https://github.com/nextcloud/server.git synchronisé 2024-08-12 02:11:02 +02:00

replace \OC:: with \OC::->getSession()

Cette révision appartient à :
Bjoern Schiessle 2014-11-25 16:15:32 +01:00
Parent 1d33503487
révision 4643a5d238

Voir le fichier

@ -126,8 +126,8 @@ class Session {
* remove keys from session
*/
public function removeKeys() {
\OC::$session->remove('publicSharePrivateKey');
\OC::$session->remove('privateKey');
\OC::$server->getSession()->remove('publicSharePrivateKey');
\OC::$server->getSession()->remove('privateKey');
}
/**