From 6e51bcd2d33417f529da15baa5a413ebfc0ca993 Mon Sep 17 00:00:00 2001 From: ewinslow Date: Tue, 2 Nov 2010 23:56:08 +0000 Subject: Fixed several typos in documentation examples git-svn-id: http://code.elgg.org/elgg/trunk@7209 36083f99-b078-4883-b0ff-0f9b5a30f544 --- documentation/examples/hooks/register/all.php | 2 +- documentation/examples/hooks/register/emit.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'documentation/examples/hooks/register') diff --git a/documentation/examples/hooks/register/all.php b/documentation/examples/hooks/register/all.php index f2e4407a6..6c23ed56b 100644 --- a/documentation/examples/hooks/register/all.php +++ b/documentation/examples/hooks/register/all.php @@ -2,7 +2,7 @@ register_plugin_hook('all', 'system', 'example_plugin_hook_handler'); -// This function will be called for any event of type 'object' +// This function will be called for any hook of type 'system' function example_plugin_hook_handler($hook, $type, $value, $params) { // logic here. } diff --git a/documentation/examples/hooks/register/emit.php b/documentation/examples/hooks/register/emit.php index bcf991794..d0ea2c4ad 100644 --- a/documentation/examples/hooks/register/emit.php +++ b/documentation/examples/hooks/register/emit.php @@ -1,5 +1,6 @@