From af78fbb535a6fedbc2eb70a26ddc39739be2b986 Mon Sep 17 00:00:00 2001 From: Janusz Dobrowolski Date: Tue, 20 Oct 2009 21:51:58 +0000 Subject: [PATCH] Small error message fix in dimension db. --- CHANGELOG.txt | 4 +++- dimensions/includes/dimensions_db.inc | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index e40ca10e..a95af643 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -33,8 +33,10 @@ $ /config.php (removed) /install/index.php /install/save.php /lang/installed_languages.inc (removed initial version) -$ Moving control to install wizard when config file does not exists. +! Moving control to install wizard when config file does not exists. $ /index.php +# Fixed db error message +$ /dimesion/includes/db/dimension_db.inc 18-Oct-2009 Janusz Dobrowolski (merged changes for 2.1.7 from main branch) ! Added html_entity_decode() in db_escape() for correct INSERT>SELECT>INSERT sequences. diff --git a/dimensions/includes/dimensions_db.inc b/dimensions/includes/dimensions_db.inc index c455e891..1a4448de 100644 --- a/dimensions/includes/dimensions_db.inc +++ b/dimensions/includes/dimensions_db.inc @@ -148,7 +148,7 @@ function close_dimension($id) function reopen_dimension($id) { $sql = "UPDATE ".TB_PREF."dimensions SET closed='0' WHERE id = $id"; - db_query($sql, "could not close dimension"); + db_query($sql, "could not reopen dimension"); } ?> \ No newline at end of file -- 2.30.2