From 4619f95ab789d0876af0f965f52e9da6e58cafb4 Mon Sep 17 00:00:00 2001 From: Andre Lorbach Date: Tue, 20 May 2008 16:43:04 +0200 Subject: [PATCH] Added changelog entry --- ChangeLog | 11 +++++++++++ src/include/functions_common.php | 2 +- src/index.php | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 462c416..6aae488 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,15 @@ --------------------------------------------------------------------------- +Version 2.3.2 (devel), 2008-05-20 +- Implemented Online Search button into the field submenus. The search + uses our new repository at kb.monitorware.com. +- Added pager to the bottom of the index page as well (bugtracker id 76) +- Added filtering support for the new Eventlog fields +- Adding field mapping definitions for Windows Eventlog which are: + SYSLOG_EVENT_LOGTYPE, SYSLOG_EVENT_SOURCE, SYSLOG_EVENT_CATEGORY, + SYSLOG_EVENT_ID and SYSLOG_EVENT_USER +- Simplified columns configuration definition in config.sample.php +- Fixed minor css issues. +--------------------------------------------------------------------------- Version 2.1.6 (beta), 2008-05-19 - Fixed filter bug, if you want to filter with ":", you can do this by using "\:" now. diff --git a/src/include/functions_common.php b/src/include/functions_common.php index 7d863e3..3e5ee92 100644 --- a/src/include/functions_common.php +++ b/src/include/functions_common.php @@ -73,7 +73,7 @@ $LANG_EN = "en"; // Used for fallback $LANG = "en"; // Default language // Default Template vars -$content['BUILDNUMBER'] = "2.3.1"; +$content['BUILDNUMBER'] = "2.3.2"; $content['TITLE'] = "phpLogCon :: Release " . $content['BUILDNUMBER']; // Default page title $content['BASEPATH'] = $gl_root_path; $content['EXTRA_METATAGS'] = ""; diff --git a/src/index.php b/src/index.php index a9952b4..db450e9 100644 --- a/src/index.php +++ b/src/index.php @@ -415,7 +415,7 @@ if ( isset($content['Sources'][$currentSourceID]) ) // && $content['Sources'][$c 'IconSource' => $content['MENU_BULLET_BLUE'] ); $content['syslogmessages'][$counter]['values'][$mycolkey]['buttons'][] = array( - 'ButtonUrl' => 'http://kb.monitorware.com/search.php?keywords=' . PrepareStringForSearch($content['LN_FIELDS_EVENTID']) . '+' . $logArray[$mycolkey], + 'ButtonUrl' => 'http://kb.monitorware.com/kbsearch.php?sa=Search&q=' . PrepareStringForSearch($content['LN_FIELDS_EVENTID']) . '+' . $logArray[$mycolkey], 'DisplayName' => $content['LN_VIEW_SEARCHFOR'] . " " . $content['LN_FIELDS_EVENTID'] . " '" . $logArray[$mycolkey] . "'", 'IconSource' => $content['MENU_NETWORK'] );