From 38af8b4c4c6cf568487342b3469811091466b32b Mon Sep 17 00:00:00 2001 From: Clint Armstrong Date: Wed, 22 Jul 2015 08:48:33 -0400 Subject: [PATCH] return instead of exit --- includes/sql-schema/update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/sql-schema/update.php b/includes/sql-schema/update.php index 141139a35d..1d0c708047 100644 --- a/includes/sql-schema/update.php +++ b/includes/sql-schema/update.php @@ -88,7 +88,7 @@ if (explode('.', max($filelist), 2)[0] <= $db_rev) { if ($debug) { echo "DB Schema already up to date.\n"; } - exit(0); + return; } if (!dbGetLock('schema_update')) {