4
Glossaire 1.7 will work with XOOPS 2.2 if you replace the mysql.sql file with the following:
#
# Structure des tables du Glossaire
# vous devez renommer les tables en changeant le paramètre "xoops" en fonction
# du préfix que vous avez défini lors de l'installation de Xoops.
#
CREATE TABLE `glossaire` (
`id` int(10) NOT NULL auto_increment,
`lettre` varchar(8) NOT NULL,
`nom` longtext NOT NULL,
`definition` longtext NOT NULL,
`affiche` varchar(5) NOT NULL,
`lien` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) AUTO_INCREMENT=1 ;
CREATE TABLE `glossaire_comm` (
`id` int(10) NOT NULL auto_increment,
`def` varchar(10) NOT NULL,
`auteur` varchar(25) NOT NULL,
`date` varchar(25) NOT NULL,
`commentaire` text NOT NULL,
`url` varchar(100) NOT NULL,
`affiche` varchar(5) NOT NULL,
PRIMARY KEY (`id`)
) AUTO_INCREMENT=1 ;
Please note that there are a some translation mistakes in the english language files causing the text being partly german.
Glossaire is pretty basic glossary module.