diff --git a/docs/commandref.html b/docs/commandref.html
index 79b1def12..a18ff92ce 100644
--- a/docs/commandref.html
+++ b/docs/commandref.html
@@ -8175,8 +8175,9 @@ href="http://www.elv.de/output/controller.aspx?cid=74&detail=10&detail2=29870">U
The regexp will be checked against the (complete!) device name
or against the (complete!) devicename:event combination.
- <filename> may contain one or more of the following
- wildcards (a subset of the Unix date command arguments):
+ <filename> may contain %-wildcards of the
+ POSIX strftime function of the underlying OS (see your strftime manual).
+ Common used wildcards are:
%d day of month (01..31)%m month (01..12)%w day of week (0..6); 0 represents Sunday
%j day of year (001..366)
%U week number of year with Sunday as first day of week (00..53)
- %V week number of year with Monday as first day of week (01..53)
+ %W week number of year with Monday as first day of week (00..53)
%L by the value of the global logdir attribute.%V for ISO 8601 week numbers check if it is
+ correctly supported by your system (%V may not be replaced, replaced by an
+ empty string or by an incorrect ISO-8601 week number, especially
+ at the beginning of the year)
+ If you use %V you will also have to use %G
+ instead of %Y for the year!define lamplog FileLog /var/tmp/lamp.log lampdefine lamplog FileLog %L/lamp.log lampdefine wzlog FileLog /var/tmp/wz-%Y-%U.log
wz:(measured-temp|actuator).*define wzlog FileLog /var/tmp/wz-%G-%V.log
+ wz:(measured-temp|actuator).*