You are here

public function FBSession::removePublication in Facebook Autopost 7

Remove the stored data in the session. This is important to know if the user is trying to be authorized.

File

class/FBSession.php, line 57
Handles session management for the Facebook Autopost module

Class

FBSession
Class implementation

Code

public function removePublication() {
  if (isset($_SESSION)) {
    unset($_SESSION['fb_autopost_authorization_required']);
  }
}