openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit c2292210be2472ebea6d4da73fc43dd4b1464587
parent e20a84f780b450cb2a9f7a28d97364353cee2a65
Author: Jan Dankert <devnull@localhost>
Date:   Fri, 30 Dec 2016 00:40:30 +0100

Cleanup: Definierte Konstanten verwenden.

Diffstat:
db/DbUpdate.class.php | 9+++++++--
1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/db/DbUpdate.class.php b/db/DbUpdate.class.php @@ -2,6 +2,9 @@ define('OR_DB_SUPPORTED_VERSION',3); +define('OR_DB_STATUS_UPDATE_PROGRESS', 0); +define('OR_DB_STATUS_UPDATE_SUCCESS' , 1); + class DbUpdate { function update( $db ) @@ -25,7 +28,8 @@ class DbUpdate { if ( $installVersion > 2 ) { - $sql = new Sql('INSERT INTO {t_version} (id,version,status,installed) VALUES( {version},{version},0,{time} )',$db->id); + $sql = new Sql('INSERT INTO {t_version} (id,version,status,installed) VALUES( {version},{version},{status},{time} )',$db->id); + $sql->setInt('status' , OR_DB_STATUS_UPDATE_PROGRESS); $sql->setInt('version', $installVersion); $sql->setInt('time' , time() ); $db->query( $sql ); @@ -41,7 +45,8 @@ class DbUpdate if ( $installVersion > 2 ) { - $sql = new Sql('UPDATE {t_version} SET status=1,installed={time} WHERE version={version}',$db->id); + $sql = new Sql('UPDATE {t_version} SET status={status},installed={time} WHERE version={version}',$db->id); + $sql->setInt('status' , OR_DB_STATUS_UPDATE_SUCCESS); $sql->setInt('version', $installVersion); $sql->setInt('time' , time() ); $db->query( $sql );