Skip to content

Commit

Permalink
HTTPRequest: sessionCommit wrapper.
Browse files Browse the repository at this point in the history
  • Loading branch information
kakserpom committed Nov 16, 2010
1 parent af122ac commit a19b3e5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/HTTPRequest.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -779,8 +779,12 @@ public function postFinishHandler() {
}
}
if (isset($this->attrs->session)) {
session_commit();
$this->sessionCommit();
}
}

public function sessionCommit() {
session_commit();
}

}

0 comments on commit a19b3e5

Please sign in to comment.