mirror of
https://github.com/rsyslog/loganalyzer.git
synced 2025-09-25 18:59:12 +02:00
Merge branch 'beta' into devel
Conflicts: src/include/functions_common.php
This commit is contained in:
commit
4ebe5c288c
@ -1,8 +1,15 @@
|
||||
---------------------------------------------------------------------------
|
||||
Version 2.5.21 (beta), 2008-11-24
|
||||
- Fixed an infinite search loop which occured of the option
|
||||
"Suppress Duplicated Messages was enabled". This caused the index page
|
||||
to timeout once a duplicated message was hit.
|
||||
- Fixed that filters were ignored when exporting results to cvs/xml
|
||||
---------------------------------------------------------------------------
|
||||
Version 2.5.20 (beta), 2008-11-19
|
||||
- Fixed a performance issue in the logstream db and pdo drivers when
|
||||
using filters. This bug could cause script timeouts when using complex
|
||||
filters.
|
||||
- Added default .htaccess to prevent webserver access on cron folder
|
||||
---------------------------------------------------------------------------
|
||||
Version 2.5.19 (beta), 2008-11-18
|
||||
- Added a new "cron" folder which contains a maintenance.php script.
|
||||
|
@ -87,6 +87,7 @@ if (
|
||||
$content['error_details'] = $content['LN_GEN_ERROR_PDFMISSINGEXTENSION'];
|
||||
}
|
||||
*/
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -40,9 +40,6 @@ include($gl_root_path . 'include/functions_common.php');
|
||||
include($gl_root_path . 'include/functions_frontendhelpers.php');
|
||||
include($gl_root_path . 'include/functions_filters.php');
|
||||
|
||||
// Init Langauge first!
|
||||
// IncludeLanguageFile( $gl_root_path . '/lang/' . $LANG . '/main.php' );
|
||||
|
||||
// Include LogStream facility
|
||||
include($gl_root_path . 'classes/logstream.class.php');
|
||||
|
||||
@ -330,6 +327,13 @@ if ( isset($content['Sources'][$currentSourceID]) )
|
||||
// Set last mgr
|
||||
$szLastMessage = $logArray[SYSLOG_MESSAGE];
|
||||
|
||||
// --- Extra Loop to get the next entry!
|
||||
do
|
||||
{
|
||||
$ret = $stream->ReadNext($uID, $logArray);
|
||||
} while ( $ret == ERROR_MSG_SKIPMESSAGE );
|
||||
// ---
|
||||
|
||||
// Skip entry
|
||||
continue;
|
||||
}
|
||||
|
@ -108,6 +108,7 @@
|
||||
<td align="right">
|
||||
<input type="hidden" name="op" value="export">
|
||||
<input type="hidden" name="uid" value="{uid_original}">
|
||||
<input type="hidden" name="filter" value="{searchstr}">
|
||||
<!-- IF skipone="true" -->
|
||||
<input type="hidden" name="skipone" value="true">
|
||||
<!-- ENDIF skipone="true" -->
|
||||
|
Loading…
x
Reference in New Issue
Block a user