Skip to content

Commit

Permalink
Change 2.1.11 release date
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffhumphrey committed Oct 31, 2017
1 parent 1b70004 commit 0196ce1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
6 changes: 3 additions & 3 deletions includes/current_version.inc.php
@@ -1,16 +1,16 @@
<?php
// For storage in DB and update script use
$current_version = "2.1.10.0";
$current_version = "2.1.11.0";

// For on-screen display and consistency
$current_version_display = "2.1.10";
$current_version_display = "2.1.11";

// 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 = "2017-10-21";
$current_version_date_display = "2017-10-31";

// Convert current version date to Unix timestamp
$current_version_date = strtotime($current_version_date_display);
Expand Down
7 changes: 2 additions & 5 deletions paths.php
Expand Up @@ -125,11 +125,8 @@
*
* @fixes https://github.com/geoffhumphrey/brewcompetitiononlineentry/issues/781
*/
if (empty($installation_id)) {
$prefix_session = md5(__FILE__);
} else {
$prefix_session = md5($installation_id);
}
if (empty($installation_id)) $prefix_session = md5(__FILE__);
else $prefix_session = md5($installation_id);

function is_session_started() {
if (php_sapi_name() !== 'cli' ) {
Expand Down

0 comments on commit 0196ce1

Please sign in to comment.