From 1a8bdf554a73aefcb36016bcdbc50d15c7341719 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Tue, 18 Oct 2016 08:25:47 +0200 Subject: [PATCH] Fix "DB Write" test (#5479) --- installer/test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/test.php b/installer/test.php index 1ed50ddb2..a79adc170 100644 --- a/installer/test.php +++ b/installer/test.php @@ -179,7 +179,7 @@ if ($db_working) { // write test $insert_id = md5(uniqid()); $db_write = $DB->query("INSERT INTO " . $DB->quote_identifier($RCI->config['db_prefix'] . 'session') - . " (`sess_id`, `created`, `ip`, `vars`) VALUES (?, ".$DB->now().", '127.0.0.1', 'foo')", $insert_id); + . " (`sess_id`, `changed`, `ip`, `vars`) VALUES (?, ".$DB->now().", '127.0.0.1', 'foo')", $insert_id); if ($db_write) { $RCI->pass('DB Write');