Update zmupdate.pl.in for 1.26.3 release

This commit is contained in:
Andy Bauer 2013-09-10 12:46:33 -05:00
parent a44bc63d29
commit 0bf9aacab2
3 changed files with 15 additions and 1 deletions

View File

@ -44,4 +44,5 @@ EXTRA_DIST = \
zm_update-1.24.4.sql \
zm_update-1.26.0.sql \
zm_update-1.26.1.sql \
zm_update-1.26.2.sql
zm_update-1.26.2.sql \
zm_update-1.26.3.sql

6
db/zm_update-1.26.3.sql Normal file
View File

@ -0,0 +1,6 @@
--
-- This updates a 1.26.2 database to 1.26.3
--
-- No changes required
--

View File

@ -1039,6 +1039,13 @@ if ( $version )
$cascade = !undef;
}
if ( $cascade || $version eq "1.26.3" )
{
# Patch the database
patchDB( $dbh, "1.26.3" );
$cascade = !undef;
}
if ( $cascade )
{
my $installed_version = ZM_VERSION;