From ccb2a2e21e507df6f50eaca974a941e7f07d51e3 Mon Sep 17 00:00:00 2001 From: Nicolas Ogier Date: Thu, 11 Jul 2019 11:55:21 +0200 Subject: [PATCH] Correction erreur SQL 3.9.10 --- Installation-fr-FR/sql/mysql/joomla_fr.sql | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Installation-fr-FR/sql/mysql/joomla_fr.sql b/Installation-fr-FR/sql/mysql/joomla_fr.sql index 78d67a2b..19157c99 100644 --- a/Installation-fr-FR/sql/mysql/joomla_fr.sql +++ b/Installation-fr-FR/sql/mysql/joomla_fr.sql @@ -1834,7 +1834,7 @@ CREATE TABLE IF NOT EXISTS `#__template_styles` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `template` varchar(50) NOT NULL DEFAULT '', `client_id` tinyint(1) unsigned NOT NULL DEFAULT 0, - `home` tinyint(1) unsigned NOT NULL DEFAULT 0, + `home` char(7) NOT NULL DEFAULT '0', `title` varchar(255) NOT NULL DEFAULT '', `params` text NOT NULL, PRIMARY KEY (`id`), @@ -1848,10 +1848,10 @@ CREATE TABLE IF NOT EXISTS `#__template_styles` ( -- INSERT INTO `#__template_styles` (`id`, `template`, `client_id`, `home`, `title`, `params`) VALUES -(4, 'beez3', 0, 0, 'Beez3 - Default', '{"wrapperSmall":"53","wrapperLarge":"72","logo":"images\\/joomla_black.png","sitetitle":"Joomla!","sitedescription":"Open Source Content Management","navposition":"left","templatecolor":"personal","html5":"0"}'), -(5, 'hathor', 1, 0, 'Hathor - Default', '{"showSiteName":"0","colourChoice":"","boldText":"0"}'), -(7, 'protostar', 0, 1, 'protostar - Default', '{"templateColor":"","logoFile":"","googleFont":"1","googleFontName":"Open+Sans","fluidContainer":"0"}'), -(8, 'isis', 1, 1, 'isis - Default', '{"templateColor":"","logoFile":""}'); +(4, 'beez3', 0, '0', 'Beez3 - Default', '{"wrapperSmall":"53","wrapperLarge":"72","logo":"images\\/joomla_black.png","sitetitle":"Joomla!","sitedescription":"Open Source Content Management","navposition":"left","templatecolor":"personal","html5":"0"}'), +(5, 'hathor', 1, '0', 'Hathor - Default', '{"showSiteName":"0","colourChoice":"","boldText":"0"}'), +(7, 'protostar', 0, '1', 'protostar - Default', '{"templateColor":"","logoFile":"","googleFont":"1","googleFontName":"Open+Sans","fluidContainer":"0"}'), +(8, 'isis', 1, '1', 'isis - Default', '{"templateColor":"","logoFile":""}'); -- --------------------------------------------------------