upgrade bootstrap and js

This commit is contained in:
Walter Hupfeld
2024-03-13 12:03:56 +01:00
parent 2ac9d01257
commit 0df358251a
93 changed files with 17858 additions and 33259 deletions

View File

@@ -88,3 +88,36 @@ Vielen Dank für Ihre Unterstützung.');
INSERT INTO 'config' ('key','value') VALUES ('stadt','Hamm');
");
DROP TABLE IF EXISTS `config`;
CREATE TABLE `config` (
`key` varchar(50) NOT NULL,
`value` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
INSERT INTO `config` (`key`, `value`) VALUES
('boolActive', '1'),
('boolApprove', '1'),
('boolComment', '1'),
('boolDefect', '1'),
('boolDistrictSelection', '0'),
('boolRating', '1'),
('boolUpload', '1'),
('boolUserinfo', '0'),
('contactEmail', 'info@adfc-nrw.de'),
('impressum', 'ADFC Landesverband NRW\r\nDüsseldorf\r\n\r\n<a href=\"https://nrw.adfc.de\" target=\"_blank\">www.nrw.adfc.de</a>'),
('introText', ' ADFC Meldeportal für die Mitteilung von Anregungen und Ideen zum Radverkehr und der Anzeige von Barrieren, wie Umlaufsperren und Sperrpfosten. '),
('logo', 'css/logo_nordrhein_westfalen.png'),
('stadt', 'Hamm'),
('title', 'Hindernis-Melder des ADFC NRW'),
('uploaddir', '/var/www/html/images/'),
('url', 'https://nrw.adfc.de'),
('UrlBez', 'ADFC Landesverband NRW');
ALTER TABLE `config`
ADD PRIMARY KEY (`key`);
COMMIT;