aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/datetime.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/datetime.php')
-rw-r--r--phpBB/includes/datetime.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/phpBB/includes/datetime.php b/phpBB/includes/datetime.php
index ec2cb3f471..0cb4c79a10 100644
--- a/phpBB/includes/datetime.php
+++ b/phpBB/includes/datetime.php
@@ -45,24 +45,6 @@ class phpbb_datetime extends DateTime
}
/**
- * Returns a UNIX timestamp representation of the date time.
- *
- * @internal This method is for backwards compatibility with 5.2, hence why it doesn't use our method naming standards.
- * @return int UNIX timestamp
- */
- public function getTimestamp()
- {
- static $compat;
-
- if (!isset($compat))
- {
- $compat = !method_exists('DateTime', 'getTimestamp');
- }
-
- return !$compat ? parent::getTimestamp() : (int) parent::format('U');
- }
-
- /**
* Formats the current date time into the specified format
*
* @param string $format Optional format to use for output, defaults to users chosen format