aboutsummaryrefslogtreecommitdiff
path: root/documentation/examples/hooks/register/basic.php
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-02 21:40:07 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-02 21:40:07 +0000
commitc554c1b3f81011723b56b93f9fe19122a6fdba70 (patch)
treec09f6e2805ff515764ce8b120a521a8170dd2bce /documentation/examples/hooks/register/basic.php
parente40958a97ddce771ac9a9f2a8473da7ee3e6534f (diff)
downloadelgg-c554c1b3f81011723b56b93f9fe19122a6fdba70.tar.gz
elgg-c554c1b3f81011723b56b93f9fe19122a6fdba70.tar.bz2
Corrected a couple typos in the documentation that are being registered as php errors
git-svn-id: http://code.elgg.org/elgg/trunk@7206 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'documentation/examples/hooks/register/basic.php')
-rw-r--r--documentation/examples/hooks/register/basic.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/examples/hooks/register/basic.php b/documentation/examples/hooks/register/basic.php
index 957e82743..4cedbf0fd 100644
--- a/documentation/examples/hooks/register/basic.php
+++ b/documentation/examples/hooks/register/basic.php
@@ -6,7 +6,7 @@ function example_plugin_hook_handler($event, $type, $value, $params) {
var_dump($event);
var_dump($type);
var_dump($value);
- var_dump($params):
+ var_dump($params);
return true;
}