Hosts and Templates are showing up under the column "Templates" in "Template Linkage" on the first screen where an admin should pick a template to link to. This could cause a mess if someone linked a host to another host. 
So if a admin goes to
Configuration -> Hosts
Drop Down: Template Linkage
Host will show up under the Templates column in "Template Linkage". It does not happen all the time. I see it mostly of the time if I go to "Host" in the drop down while in host configuration and select "all" for the group and then go back to "Template Linkage"
The following user definitions are being used in the defines.inc.php file:

So if a admin goes to
Configuration -> Hosts
Drop Down: Template Linkage
Host will show up under the Templates column in "Template Linkage". It does not happen all the time. I see it mostly of the time if I go to "Host" in the drop down while in host configuration and select "all" for the group and then go back to "Template Linkage"
The following user definitions are being used in the defines.inc.php file:
Code:
/* USER DEFINES */
define('ZBX_LOGIN_ATTEMPTS', 5);
define('ZBX_LOGIN_BLOCK', 30); // sec
define('TRIGGERS_OPTION_DISABLED', 0); // reserved
define('TRIGGERS_OPTION_ONLYTRUE', 1); // use 0 to disable
define('TRIGGERS_OPTION_ALL', 2); // use 0 to disable
define('TRIGGERS_OPTION_NOFALSEFORB', 0); // use 0 to disable
define('TRIGGER_FALSE_PERIOD', 1800); // 30min, 0 - disable
define('TRIGGER_BLINK_PERIOD', 1800); // 30min, 0 - disable
define('EVENTS_OPTION_DISABLED', 0); // reserved
define('EVENTS_OPTION_NOEVENT', 1); // use 0 to disable
define('EVENTS_OPTION_ALL', 2); // use 0 to disable
define('EVENTS_OPTION_NOT_ACK', 3); // use 0 to disable
define('EVENTS_OPTION_ONLYTRUE_NOTACK', 4); // use 0 to disable
define('EVENTS_OPTION_NOFALSEFORB', 5); // reserved for TRIGGERS_OPTION_NOFALSEFORB, to disable set TRIGGERS_OPTION_NOFALSEFORB to 0
define('ZBX_MIN_PERIOD', 3600); // ~1 hour
define('ZBX_MAX_PERIOD', 12*31*24*3600); // ~1 year
define('ZBX_PERIOD_DEFAULT', ZBX_MIN_PERIOD);
define('ZBX_DROPDOWN_FIRST_ENTRY', 0); // 0 - NONE, 1 - ALL
define('ZBX_DROPDOWN_FIRST_REMEMBER', 1); // 0 - do NOT remember, 1 - do remember
define('ZBX_DISABLE_MENU_CACHE', 0); // set 1 to disable
Comment