From f0852dcf1af3b0c99cfa71618b543b4f7ab7ccbe Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sun, 10 Aug 2014 14:06:19 +0200 Subject: [PATCH] [ticket/12932] Remove set_datetime_class method from user class PHPBB3-12932 --- phpBB/phpbb/user.php | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/phpBB/phpbb/user.php b/phpBB/phpbb/user.php index 40845b75b1..ea98034434 100644 --- a/phpBB/phpbb/user.php +++ b/phpBB/phpbb/user.php @@ -925,17 +925,4 @@ class user extends \phpbb\session return $forum_ids; } - - /** - * Set class name of datetime class - * - * @param string $datetime Class name to set - * @return null - */ - public function set_datetime_class($datetime) - { - $this->datetime = $datetime; - } - - }