Merge branch 'v2-stable' into beta

This commit is contained in:
Andre Lorbach 2010-02-23 16:21:52 +01:00
commit be7b23983c
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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;