From 4f72fdfea160b0304887b268e6204d8dd8ac754e Mon Sep 17 00:00:00 2001 From: Florian Schlichting Date: Mon, 23 Jan 2017 23:02:56 +0100 Subject: [PATCH] Bump davical version to 1.1.5, DB is at 1.3.2 --- VERSION | 2 +- htdocs/always.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index 65087b4f..e25d8d9f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.4 +1.1.5 diff --git a/htdocs/always.php b/htdocs/always.php index a8c872b0..9e817023 100644 --- a/htdocs/always.php +++ b/htdocs/always.php @@ -245,7 +245,7 @@ if ( function_exists('awl_set_locale') ) { */ $c->code_version = 0; $c->want_awl_version = '0.57'; -$c->version_string = '1.1.4'; // The actual version # is replaced into that during the build /release process +$c->version_string = '1.1.5'; // The actual version # is replaced into that during the build /release process if ( isset($c->version_string) && preg_match( '/(\d+)\.(\d+)\.(\d+)(.*)/', $c->version_string, $matches) ) { $c->code_major = $matches[1]; $c->code_minor = $matches[2]; @@ -262,7 +262,7 @@ $_SERVER['SERVER_NAME'] = $c->domain_name; require_once('AwlQuery.php'); -$c->want_dbversion = array(1,2,12); +$c->want_dbversion = array(1,3,2); $c->schema_version = 0; $qry = new AwlQuery( 'SELECT schema_major, schema_minor, schema_patch FROM awl_db_revision ORDER BY schema_id DESC LIMIT 1;' ); if ( $qry->Exec('always',__LINE__,__FILE__) && $row = $qry->Fetch() ) {