diff options
Diffstat (limited to 'engine/classes/XMLRPCDateParameter.php')
-rw-r--r-- | engine/classes/XMLRPCDateParameter.php | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/engine/classes/XMLRPCDateParameter.php b/engine/classes/XMLRPCDateParameter.php index 47ba88c0f..bb39167fc 100644 --- a/engine/classes/XMLRPCDateParameter.php +++ b/engine/classes/XMLRPCDateParameter.php @@ -1,27 +1,27 @@ -<?php
-/**
- * @class XMLRPCDateParameter An ISO8601 data and time.
- * @author Curverider Ltd
- */
-class XMLRPCDateParameter extends XMLRPCParameter
-{
- /**
- * Construct a date
- *
- * @param int $timestamp The unix timestamp, or blank for "now".
- */
- function __construct($timestamp = 0)
- {
- parent::__construct();
-
- $this->value = $timestamp;
- if (!$timestamp)
- $this->value = time();
- }
-
- function __toString()
- {
- $value = date('c', $this->value);
- return "<value><dateTime.iso8601>{$value}</dateTime.iso8601></value>";
- }
+<?php +/** + * @class XMLRPCDateParameter An ISO8601 data and time. + * @author Curverider Ltd + */ +class XMLRPCDateParameter extends XMLRPCParameter +{ + /** + * Construct a date + * + * @param int $timestamp The unix timestamp, or blank for "now". + */ + function __construct($timestamp = 0) + { + parent::__construct(); + + $this->value = $timestamp; + if (!$timestamp) + $this->value = time(); + } + + function __toString() + { + $value = date('c', $this->value); + return "<value><dateTime.iso8601>{$value}</dateTime.iso8601></value>"; + } }
\ No newline at end of file |