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() ) {