diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-08-10 14:06:19 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-08-10 14:06:19 +0200 |
commit | f0852dcf1af3b0c99cfa71618b543b4f7ab7ccbe (patch) | |
tree | 21307e0500c4176572b0efb559dcd41ef91f9f39 /phpBB/phpbb | |
parent | 8d99b4afe1557a6ec0e760c4876bb06a3b9991d3 (diff) | |
download | forums-f0852dcf1af3b0c99cfa71618b543b4f7ab7ccbe.tar forums-f0852dcf1af3b0c99cfa71618b543b4f7ab7ccbe.tar.gz forums-f0852dcf1af3b0c99cfa71618b543b4f7ab7ccbe.tar.bz2 forums-f0852dcf1af3b0c99cfa71618b543b4f7ab7ccbe.tar.xz forums-f0852dcf1af3b0c99cfa71618b543b4f7ab7ccbe.zip |
[ticket/12932] Remove set_datetime_class method from user class
PHPBB3-12932
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/user.php | 13 |
1 files changed, 0 insertions, 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; - } - - } |