diff options
author | ArthurHoaro <arthur@hoa.ro> | 2017-05-07 16:50:20 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2017-05-07 17:11:22 +0200 |
commit | 813849e5216cb87121e0f778a734575be6a36052 (patch) | |
tree | 45605ad43e3f751eba51d19f8c6955c3824e8d32 /application/History.php | |
parent | a4af59f47103a3f9c903eeddb1e30ab9cb7344f0 (diff) | |
download | Shaarli-813849e5216cb87121e0f778a734575be6a36052.tar.gz Shaarli-813849e5216cb87121e0f778a734575be6a36052.tar.zst Shaarli-813849e5216cb87121e0f778a734575be6a36052.zip |
Add history entries for API endpoint
CHANGED: datetime is now store as an object in history store file
Diffstat (limited to 'application/History.php')
-rw-r--r-- | application/History.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/History.php b/application/History.php index f93b0356..116b9264 100644 --- a/application/History.php +++ b/application/History.php | |||
@@ -135,7 +135,7 @@ class History | |||
135 | 135 | ||
136 | $item = [ | 136 | $item = [ |
137 | 'event' => $status, | 137 | 'event' => $status, |
138 | 'datetime' => (new DateTime())->format(DateTime::ATOM), | 138 | 'datetime' => new DateTime(), |
139 | 'id' => $id !== null ? $id : '', | 139 | 'id' => $id !== null ? $id : '', |
140 | ]; | 140 | ]; |
141 | $this->history = array_merge([$item], $this->history); | 141 | $this->history = array_merge([$item], $this->history); |
@@ -177,7 +177,7 @@ class History | |||
177 | { | 177 | { |
178 | $comparaison = new DateTime('-'. $this->retentionTime . ' seconds'); | 178 | $comparaison = new DateTime('-'. $this->retentionTime . ' seconds'); |
179 | foreach ($this->history as $key => $value) { | 179 | foreach ($this->history as $key => $value) { |
180 | if (DateTime::createFromFormat(DateTime::ATOM, $value['datetime']) < $comparaison) { | 180 | if ($value['datetime'] < $comparaison) { |
181 | unset($this->history[$key]); | 181 | unset($this->history[$key]); |
182 | } | 182 | } |
183 | } | 183 | } |