1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-29 04:50:51 +02:00

[ticket/11620] Added validate_session to provider.

PHPBB3-11620
This commit is contained in:
Andy Chase
2013-07-05 15:00:05 -07:00
parent 5cdcb689df
commit a1168972ff

View File

@@ -12,12 +12,19 @@
* sessions. * sessions.
*/ */
class phpbb_provider { class phpbb_provider {
function autologin() function autologin()
{ {
return array(); return array();
} }
function kill() function kill()
{ {
} }
function validate_session($data)
{
return true;
}
} }