From 7eb533a13f9ae6be07895170e81e10761603b1d6 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 14 Jan 2006 21:54:45 +0000 Subject: [PATCH] r704: - Don't insert a default product and version - Cache user help --- install/install.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/install/install.php b/install/install.php index 9dd64e7..395a11b 100644 --- a/install/install.php +++ b/install/install.php @@ -81,11 +81,6 @@ if ($bugsys->in['mark'] == 2) echo 'Populating table ' . $table . '
' . "\n"; } - - $db->query("INSERT INTO " . TABLE_PREFIX . "product (componentmother, shortname, displayorder, title, description) VALUES (0, 'main', 10, 'Main Product', 'Default product from installer')"); - $db->query("INSERT INTO " . TABLE_PREFIX . "version (productid, version, displayorder) VALUES (1, 'Main Version', 100)"); - - echo 'Inserting default product and version
' . "\n"; } // ################################################################### @@ -229,6 +224,9 @@ if ($bugsys->in['mark'] == 7) build_versions(); echo "Cached versions
\n"; + + build_user_help(); + echo "Cached user help documentation
\n"; } // ################################################################### -- 2.22.5