release 1.1.3.1, fixing a critical typo in htdocs/always.php :-(

This commit is contained in:
Florian Schlichting 2014-10-07 08:48:19 +02:00
parent 37e814c647
commit cbe63d3182
3 changed files with 9 additions and 3 deletions

View File

@ -1 +1 @@
1.1.3
1.1.3.1

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
davical (1.1.3.1-1) unstable; urgency=medium
* fix a critical typo in htdocs/always.php
-- Florian Schlichting <fsfs@debian.org> Tue, 07 Oct 2014 08:44:50 +0200
davical (1.1.3-1) unstable; urgency=low
[ Andrew McMillan ]

View File

@ -203,8 +203,8 @@ if ( function_exists('awl_set_locale') ) {
*
*/
$c->code_version = 0;
$c->want_awl_version = ''0.55'';
$c->version_string = '1.1.3'; // The actual version # is replaced into that during the build /release process
$c->want_awl_version = '0.55';
$c->version_string = '1.1.3.1'; // 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];