Skip to content

Commit

Permalink
New Version Number
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffhumphrey committed Oct 5, 2021
1 parent cbfc77a commit 8559f61
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions includes/current_version.inc.php
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<?php
// For storage in DB and update script use
$current_version = "2.3.0.0";
$current_version = "2.3.1.0";

// For on-screen display and consistency
$current_version_display = "2.3.0";
$current_version_display = "2.3.1";

// Add if pre-release - alpha, beta, etc., otherwise leave empty
$current_version_display_append = "";
if (!empty($current_version_display_append)) $current_version_display .= " ".$current_version_display_append;

// Change date for each pre-release and release. Will trigger a force update.
$current_version_date_display = "2021-09-15";
$current_version_date_display = "2021-10-04";

// Convert current version date to Unix timestamp
$current_version_date = strtotime($current_version_date_display);
Expand Down
2 changes: 1 addition & 1 deletion paths.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ function is_https() {
}

if (HOSTED) {
$installation_id = $prefix;
$installation_id = md5(__FILE__);
$session_expire_after = 30;
}

Expand Down

0 comments on commit 8559f61

Please sign in to comment.