From: Laurent Destailleur Date: Fri, 7 Feb 2014 19:24:15 +0000 (+0100) Subject: Add debian patch debian-patches-1019_allow_frame_resize.patch to X-Git-Tag: AWSTATS_7_4~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b87f1477ff6a9303cdece5429fe18d7c57f55ba;p=thirdparty%2FAWStats.git Add debian patch debian-patches-1019_allow_frame_resize.patch to add option nboflastupdatelookuptosave on command line. --- diff --git a/docs/awstats_changelog.txt b/docs/awstats_changelog.txt index f1c04822..a0c0099d 100644 --- a/docs/awstats_changelog.txt +++ b/docs/awstats_changelog.txt @@ -3,13 +3,17 @@ AWStats Changelog ***** 7.4 ***** +New features: +- Add debian patch debian-patches-1019_allow_frame_resize.patch to add + option nboflastupdatelookuptosave on command line. + Fixes: -#205 GetResolvedIP_ipv6 does not strip trailing dot -#496 tools scripts should print warnings and errors to STDERR -#919 Referrals not getting tracked due to improperly getting flagged as a search -Fixes permission on some .pl scripts. -Add debian patch 0007_russian_lang.patch. -Add debian patch 2001_awstatsprog_path.patch. +- Fixes permission on some .pl scripts. +- #205 GetResolvedIP_ipv6 does not strip trailing dot +- #496 tools scripts should print warnings and errors to STDERR +- #919 Referrals not getting tracked due to improperly getting flagged as a search +- Add debian patch 0007_russian_lang.patch. +- Add debian patch 2001_awstatsprog_path.patch. ***** 7.3 ***** diff --git a/wwwroot/cgi-bin/awstats.pl b/wwwroot/cgi-bin/awstats.pl index 8e70e9df..1a874d97 100755 --- a/wwwroot/cgi-bin/awstats.pl +++ b/wwwroot/cgi-bin/awstats.pl @@ -16929,6 +16929,7 @@ my @AllowedCLIArgs = ( 'showsteps', 'showdropped', 'showcorrupted', 'showunknownorigin', 'showdirectorigin', 'limitflush', + 'nboflastupdatelookuptosave', 'confdir', 'updatefor', 'hostfilter', 'hostfilterex', 'urlfilter', 'urlfilterex', @@ -17144,6 +17145,7 @@ if ( $QueryString =~ /(^|&|&)noloadplugin=([^&]+)/i ) { foreach ( split( /,/, $2 ) ) { $NoLoadPlugin{ &Sanitize( "$_", 1 ) } = 1; } } if ( $QueryString =~ /(^|&|&)limitflush=(\d+)/i ) { $LIMITFLUSH = $2; } +if ( $QueryString =~ /(^|&|&)nboflastupdatelookuptosave=(\d+)/i ) { $NBOFLASTUPDATELOOKUPTOSAVE = $2; } # Get/Define output if ( $QueryString =~