mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
Fixed link to module library. Ticket #3953.
This commit is contained in:
parent
db94436477
commit
318175b2dc
@ -46,3 +46,9 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES ('days_autodisable_deletion', '3
|
|||||||
-- Table `tplanned_downtime_agents`
|
-- Table `tplanned_downtime_agents`
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
ALTER TABLE tplanned_downtime_agents ADD COLUMN `manually_disabled` tinyint(1) DEFAULT 0;
|
ALTER TABLE tplanned_downtime_agents ADD COLUMN `manually_disabled` tinyint(1) DEFAULT 0;
|
||||||
|
|
||||||
|
|
||||||
|
-- ---------------------------------------------------------------------
|
||||||
|
-- Table `tlink`
|
||||||
|
-- ---------------------------------------------------------------------
|
||||||
|
UPDATE `tlink` SET `link` = 'http://library.pandorafms.com/' WHERE `name` = 'Module library';
|
||||||
|
@ -46,3 +46,8 @@ INSERT INTO tconfig (token, value) VALUES ('days_autodisable_deletion', '30');
|
|||||||
-- Table `tplanned_downtime_agents`
|
-- Table `tplanned_downtime_agents`
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
ALTER TABLE tplanned_downtime_agents ADD COLUMN manually_disabled NUMBER(5, 0) DEFAULT 0;
|
ALTER TABLE tplanned_downtime_agents ADD COLUMN manually_disabled NUMBER(5, 0) DEFAULT 0;
|
||||||
|
|
||||||
|
-- ---------------------------------------------------------------------
|
||||||
|
-- Table `tlink`
|
||||||
|
-- ---------------------------------------------------------------------
|
||||||
|
UPDATE tlink SET link = 'http://library.pandorafms.com/' WHERE name = 'Module library';
|
||||||
|
@ -241,7 +241,7 @@ INSERT INTO tlink VALUES (1,'Pandora FMS Manual','http://wiki.pandorafms.com/?ti
|
|||||||
INSERT INTO tlink VALUES (2,'Pandora FMS','http://pandorafms.com');
|
INSERT INTO tlink VALUES (2,'Pandora FMS','http://pandorafms.com');
|
||||||
INSERT INTO tlink VALUES (3,'Report a bug','{https://sourceforge.net/tracker/?func=add&group_id=155200&atid=794852}');
|
INSERT INTO tlink VALUES (3,'Report a bug','{https://sourceforge.net/tracker/?func=add&group_id=155200&atid=794852}');
|
||||||
INSERT INTO tlink VALUES (4,'Suggest new feature','http://sourceforge.net/tracker/?group_id=155200&atid=794855');
|
INSERT INTO tlink VALUES (4,'Suggest new feature','http://sourceforge.net/tracker/?group_id=155200&atid=794855');
|
||||||
INSERT INTO tlink VALUES (5,'Module library','http://pandorafms.com/pandora/repository/en');
|
INSERT INTO tlink VALUES (5,'Module library','http://library.pandorafms.com/');
|
||||||
|
|
||||||
-- Update curr val of sequence
|
-- Update curr val of sequence
|
||||||
update_currval('tlink', 'id_link');
|
update_currval('tlink', 'id_link');
|
||||||
|
@ -209,7 +209,7 @@ INSERT INTO "tlink" VALUES
|
|||||||
(2,'Pandora FMS','http://pandorafms.com'),
|
(2,'Pandora FMS','http://pandorafms.com'),
|
||||||
(3,'Report a bug','https://sourceforge.net/tracker/?func=add&group_id=155200&atid=794852'),
|
(3,'Report a bug','https://sourceforge.net/tracker/?func=add&group_id=155200&atid=794852'),
|
||||||
(4,'Suggest new feature','http://sourceforge.net/tracker/?group_id=155200&atid=794855'),
|
(4,'Suggest new feature','http://sourceforge.net/tracker/?group_id=155200&atid=794855'),
|
||||||
(5,'Module library','http://pandorafms.com/pandora/repository/en');
|
(5,'Module library','http://library.pandorafms.com/');
|
||||||
COMMIT WORK;
|
COMMIT WORK;
|
||||||
SELECT setval('tlink_id_link_seq', (SELECT (SELECT MAX(id_link) FROM tlink)));
|
SELECT setval('tlink_id_link_seq', (SELECT (SELECT MAX(id_link) FROM tlink)));
|
||||||
|
|
||||||
|
@ -199,7 +199,7 @@ INSERT INTO `tlink` VALUES
|
|||||||
(2,'Pandora FMS','http://pandorafms.com'),
|
(2,'Pandora FMS','http://pandorafms.com'),
|
||||||
(3,'Report a bug','https://sourceforge.net/tracker/?func=add&group_id=155200&atid=794852'),
|
(3,'Report a bug','https://sourceforge.net/tracker/?func=add&group_id=155200&atid=794852'),
|
||||||
(4,'Suggest new feature','http://sourceforge.net/tracker/?group_id=155200&atid=794855'),
|
(4,'Suggest new feature','http://sourceforge.net/tracker/?group_id=155200&atid=794855'),
|
||||||
(5,'Module library','http://pandorafms.com/pandora/repository/en');
|
(5,'Module library','http://library.pandorafms.com/');
|
||||||
|
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user