diff --git a/src/include/config.sample.php b/src/include/config.sample.php index 1433179..9430245 100644 --- a/src/include/config.sample.php +++ b/src/include/config.sample.php @@ -84,7 +84,7 @@ $CFG['SuppressDuplicatedMessages'] = 0; // If enabled, duplicated messages will $CFG['TreatNotFoundFiltersAsTrue'] = 0; // If you filter / search for messages, and the fields you are filtering for is not found, the filter result is treaten as TRUE! $CFG['PopupMenuTimeout'] = 3000; // This variable defines the default timeout value for popup menus in milliseconds. (those menus which popup when you click on the value of a field. $CFG['PhplogconLogoUrl'] = ""; // Put an Url to a custom toplogo you want to use. -$CFG['InlineOnlineSearchIcons'] = 0; // Show online search icons +$CFG['InlineOnlineSearchIcons'] = 1; // Show online search icons // --- // --- Custom HTML Code diff --git a/src/index.php b/src/index.php index 7e27bcd..0485d6b 100644 --- a/src/index.php +++ b/src/index.php @@ -967,7 +967,7 @@ function AddOnClickMenu(&$fieldGridItem, $fieldType, $FieldID) 'IconSource' => $content['MENU_NETWORK'] ); - if ( GetConfigSetting("InlineOnlineSearchIcons", 0, CFGLEVEL_USER) == 1 ) + if ( GetConfigSetting("InlineOnlineSearchIcons", 1, CFGLEVEL_USER) == 1 ) { // Enable SearchOnline Icon $fieldGridItem['searchonline'] = true;