From 9f8296a0672d24f71f85e8bd85afef6b78b43779 Mon Sep 17 00:00:00 2001 From: stan Date: Tue, 30 Jun 2009 07:41:54 +0000 Subject: [PATCH] Added missing DB update to 1.24.2 git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@2937 e3e1d417-86f3-4887-817a-d78f3d33393f --- scripts/zmupdate.pl.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/zmupdate.pl.in b/scripts/zmupdate.pl.in index c44c80a29..1be9f88dd 100644 --- a/scripts/zmupdate.pl.in +++ b/scripts/zmupdate.pl.in @@ -868,6 +868,12 @@ if ( $version ) patchDB( $dbh, "1.24.0" ); $cascade = !undef; } + if ( $cascade || $version eq "1.24.1" ) + { + # Patch the database + patchDB( $dbh, "1.24.1" ); + $cascade = !undef; + } if ( $cascade ) { my $installed_version = ZM_VERSION;