[248845] Refactoring generate1.php into different files with a functional approach
diff --git a/classes/system/release_train.class.php b/classes/system/release_train.class.php
index 0dee12a..bab1337 100644
--- a/classes/system/release_train.class.php
+++ b/classes/system/release_train.class.php
@@ -14,7 +14,7 @@
 
 	public $id = '';
 	public $version = '';
-	public $timestamp = date("Ymdhis");
+	public $timestamp = '';
 	
 	/**
 	* Default constructor for now.
@@ -25,6 +25,7 @@
 		if (strcmp($id, "europa") == 0) {
 			$this->version = "3.3.0";
 		}
+		$this->timestamp = date("Ymdhis");
 	}
 	
 	static function all() {