commit ccb1d5e326d2b1f48e7ca6120f307b3dcbdcfa8a
parent 4e5dfed7b7913a391c97c6c3e0ae7df7bc80ddd4
Author: Steffen Schultz <steffenschultz@mailbox.org>
Date: Wed, 20 Oct 2021 19:48:48 +0200
Updated install extension: Better timestamps
Diffstat:
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/system/extensions/install.php b/system/extensions/install.php
@@ -2,7 +2,7 @@
// Install extension, https://github.com/datenstrom/yellow-extensions/tree/master/source/install
class YellowInstall {
- const VERSION = "0.8.57";
+ const VERSION = "0.8.58";
const PRIORITY = "1";
public $yellow; // access to API
@@ -175,7 +175,7 @@ class YellowInstall {
"stamp" => $this->yellow->extension->get("edit")->response->createStamp(),
"pending" => "none",
"failed" => "0",
- "modified" => time(),
+ "modified" => date("Y-m-d H:i:s", time()),
"status" => "active");
if (!$this->yellow->user->save($fileNameUser, $email, $settings)) {
$statusCode = 500;
diff --git a/system/extensions/update-current.ini b/system/extensions/update-current.ini
@@ -65,11 +65,11 @@ media/images/photo.jpg: photo.jpg, create, optional
media/thumbnails/photo-100x40.jpg: photo-100x40.jpg, create, optional
Extension: Install
-Version: 0.8.57
+Version: 0.8.58
Description: Install a brand new, shiny website.
HelpUrl: https://github.com/datenstrom/yellow-extensions/tree/master/source/install
DownloadUrl: https://github.com/datenstrom/yellow-extensions/raw/master/zip/install.zip
-Published: 2021-09-16 23:55:13
+Published: 2021-10-20 19:42:33
Developer: Datenstrom
Status: unlisted
system/extensions/install.php: install.php, create