diff --git a/db/zm_create.sql.in b/db/zm_create.sql.in index a60bc9c5c..848b7ff8c 100644 --- a/db/zm_create.sql.in +++ b/db/zm_create.sql.in @@ -414,6 +414,7 @@ INSERT INTO States (Name,Definition,IsActive) VALUES ('default','','1'); DROP TABLE IF EXISTS `Servers`; CREATE TABLE `Servers` ( `Id` int(10) unsigned NOT NULL auto_increment, + `Hostname` TEXT, `Name` varchar(64) NOT NULL default '', `State_Id` int(10) unsigned, PRIMARY KEY (`Id`) diff --git a/web/skins/classic/js/dark.js b/web/skins/classic/js/dark.js index 76a83b298..b3e63245a 100644 --- a/web/skins/classic/js/dark.js +++ b/web/skins/classic/js/dark.js @@ -47,7 +47,7 @@ var popupSizes = { 'image': { 'addWidth': 48, 'addHeight': 80 }, 'log': { 'width': 1080, 'height': 720 }, 'login': { 'width': 720, 'height': 480 }, - 'logout': { 'width': 260, 'height': 100 }, + 'logout': { 'width': 260, 'height': 150 }, 'monitor': { 'width': 600, 'height': 780 }, 'monitorpreset':{ 'width': 440, 'height': 200 }, 'monitorprobe': { 'width': 500, 'height': 240 }, diff --git a/web/skins/classic/js/flat.js b/web/skins/classic/js/flat.js index 0ed7c55b0..aa0233783 100644 --- a/web/skins/classic/js/flat.js +++ b/web/skins/classic/js/flat.js @@ -47,7 +47,7 @@ var popupSizes = { 'image': { 'addWidth': 48, 'addHeight': 80 }, 'log': { 'width': 1080, 'height': 720 }, 'login': { 'width': 720, 'height': 480 }, - 'logout': { 'width': 260, 'height': 100 }, + 'logout': { 'width': 260, 'height': 150 }, 'monitor': { 'width': 600, 'height': 780 }, 'monitorpreset':{ 'width': 440, 'height': 200 }, 'monitorprobe': { 'width': 500, 'height': 240 },