From: Eric Bollengier Date: Thu, 13 Dec 2007 08:53:01 +0000 (+0000) Subject: ebl Extract when= from get_form() more smoothly X-Git-Tag: Release-3.0.0~2155 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=235099f8fdb3115dc78cb8c2f007304801595467;p=bacula%2Fbacula ebl Extract when= from get_form() more smoothly git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@6050 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/gui/bweb/lib/Bweb.pm b/gui/bweb/lib/Bweb.pm index 80d03e7862..f5c1a2a03b 100644 --- a/gui/bweb/lib/Bweb.pm +++ b/gui/bweb/lib/Bweb.pm @@ -1756,7 +1756,7 @@ sub get_form if ($what{when}) { my $when = CGI::param('when') || ''; - if ($when =~ /^(\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2})$/) { + if ($when =~ /(\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2})/) { $ret{when} = $1; } } diff --git a/gui/bweb/technotes-2.3 b/gui/bweb/technotes-2.3 index d2b66b0691..868618718c 100644 --- a/gui/bweb/technotes-2.3 +++ b/gui/bweb/technotes-2.3 @@ -1,3 +1,6 @@ +13Dec07 +ebl Try to extract when= from get_form() more smoothly + 06Dec07 ebl Add Bweb::Schedule Object to parse show schedule output. Now, we can make ical events for example...