diff --git a/fhem/CHANGED b/fhem/CHANGED
index 0738cf075..71db21948 100644
--- a/fhem/CHANGED
+++ b/fhem/CHANGED
@@ -324,3 +324,4 @@
- ==DATE== (4.1)
- doc: linux.html (private udev-rules, not 50-..., ATTRS)
- bugfix: setting devices with "-" in their name did not work
+ - doc: fhem.pl and commandref.html (notifyon -> notify, correction of examples)
diff --git a/fhem/HISTORY b/fhem/HISTORY
index 849515c24..7e5be8830 100644
--- a/fhem/HISTORY
+++ b/fhem/HISTORY
@@ -84,3 +84,6 @@
- Pest, Sat Apr 14 14:21:00 MEST 2007
- doc: linux.html (private udev-rules, not 50-..., ATTRS)
+
+- Pest, Sun Apr 15 14:54:30 MEST 2007
+ - doc: fhem.pl and commandref.html (notifyon -> notify, correction of examples)
diff --git a/fhem/docs/commandref.html b/fhem/docs/commandref.html
index f2c7de41e..67ee9c727 100644
--- a/fhem/docs/commandref.html
+++ b/fhem/docs/commandref.html
@@ -732,13 +732,13 @@ split in multiple lines
Examples:
- notify btn3 set lamp %
- notify btn3 { fhem "set lamp %" }
- notify btn3 "/usr/local/bin/setlamp "%""
- notify btn3 set lamp1 %;;set lamp2 %
- notify wz:measured.* "/usr/local/bin/logfht @ "%""
- notify .*H:.* {DbLog("@","%")}
- notify UNDEFINED "send-me-mail.sh "%""
+ define b3lampV1 notify btn3 set lamp %
+ define b3lampV2 notify btn3 { fhem "set lamp %" }
+ define b3lampV3 notify btn3 "/usr/local/bin/setlamp "%""
+ define b3lampV3 notify btn3 set lamp1 %;;set lamp2 %
+ define wzMessLg notify wz:measured.* "/usr/local/bin/logfht @ "%""
+ define LogHToDB notify .*H:.* {DbLog("@","%")}
+ define LogUndef notify UNDEFINED "send-me-mail.sh "%""
diff --git a/fhem/examples/01_fs20 b/fhem/examples/01_fs20
index 77405eccf..3014a0c30 100644
--- a/fhem/examples/01_fs20
+++ b/fhem/examples/01_fs20
@@ -11,7 +11,7 @@ attr global logfile /tmp/fhem-%Y-%m.log
attr global statefile /tmp/fhem.save # where to save the state of the devices
attr global verbose 3 # "normal" verbosity (min 1, max 5)
attr global port 7072 # our TCP/IP port (localhost only)
-attr global modpath . # where our FHEM directory is
+attr global modpath /usr/local/lib # where our FHEM directory is
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC
diff --git a/fhem/examples/02_fs20 b/fhem/examples/02_fs20
index 6ebf8576a..2190921d5 100644
--- a/fhem/examples/02_fs20
+++ b/fhem/examples/02_fs20
@@ -13,7 +13,7 @@ attr global logfile /tmp/fhem-%Y-%m.log
attr global statefile /tmp/fhem.save # where to save the state of the devices
attr global verbose 3 # "normal" verbosity
attr global port 7072 # our TCP/IP port (localhost only)
-attr global modpath . # where our FHEM directory is
+attr global modpath /usr/local/lib # where our FHEM directory is
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC
diff --git a/fhem/examples/03_fht b/fhem/examples/03_fht
index a202a5e73..e61ce14f9 100644
--- a/fhem/examples/03_fht
+++ b/fhem/examples/03_fht
@@ -12,7 +12,7 @@ attr global logfile /tmp/fhem-%Y-%m.log
attr global statefile /tmp/fhem.save # where to save the state of the devices
attr global verbose 3 # "normal" verbosity
attr global port 7072 # our TCP/IP port (localhost only)
-attr global modpath . # where our FHEM directory is
+attr global modpath /usr/local/lib # where our FHEM directory is
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC
define wz FHT 3232 # type FHT, transmitter code 3232 (default value)
diff --git a/fhem/examples/04_log b/fhem/examples/04_log
index e6d9c1003..f42732064 100644
--- a/fhem/examples/04_log
+++ b/fhem/examples/04_log
@@ -8,7 +8,7 @@ attr global logfile /tmp/fhem-%Y-%m.log
attr global statefile /tmp/fhem.save # where to save the state of the devices
attr global verbose 3 # "normal" verbosity
attr global port 7072 # our TCP/IP port (localhost only)
-attr global modpath . # where our FHEM directory is
+attr global modpath /usr/local/lib # where our FHEM directory is
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC
define wz FHT 3232 # type FHT, transmitter code 3232 (default value)
diff --git a/fhem/examples/05_rm100 b/fhem/examples/05_rm100
index 2d2ccc7d9..e0bb8b07c 100644
--- a/fhem/examples/05_rm100
+++ b/fhem/examples/05_rm100
@@ -12,7 +12,7 @@ attr global logfile /tmp/fhem-%Y-%m.log
attr global statefile /tmp/fhem.save # where to save the state of the devices
attr global verbose 3 # "normal" verbosity (min 1, max 5)
attr global port 7072 # our TCP/IP port (localhost only)
-attr global modpath . # where our FHEM directory is
+attr global modpath /usr/local/lib # where our FHEM directory is
define FHZ FHZ /dev/tts/USB0 # the serial port of an FHZ 1000 PC
diff --git a/fhem/fhem.pl b/fhem/fhem.pl
index fcf8a85ea..a0595f418 100755
--- a/fhem/fhem.pl
+++ b/fhem/fhem.pl
@@ -150,7 +150,7 @@ my %cmds = (
"defattr" => { Fn=>"CommandDefAttr",
Hlp=>" ,set attr for following definitions" },
"define" => { Fn=>"CommandDefine",
- Hlp=>" ,define a device/at/notifyon entity" },
+ Hlp=>" ,define a device/at/notify entity" },
"delattr" => { Fn=>"CommandDelAttr",
Hlp=>" [],delete attribute for " },
"delete" => { Fn=>"CommandDelete",