Bump davical version to 1.1.5, DB is at 1.3.2

This commit is contained in:
Florian Schlichting 2017-01-23 23:02:56 +01:00
parent caaad9ce85
commit 4f72fdfea1
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
1.1.4
1.1.5

View File

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