aboutsummaryrefslogtreecommitdiff
path: root/documentation
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
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')
-rw-r--r--documentation/examples/hooks/register/advanced.php8
-rw-r--r--documentation/examples/hooks/register/basic.php2
2 files changed, 5 insertions, 5 deletions
diff --git a/documentation/examples/hooks/register/advanced.php b/documentation/examples/hooks/register/advanced.php
index 48cddd480..a21a2e232 100644
--- a/documentation/examples/hooks/register/advanced.php
+++ b/documentation/examples/hooks/register/advanced.php
@@ -1,23 +1,23 @@
<?php
// the output:page hook is triggered by page_draw().
-register_plugin_hook('output', 'page', 'example_plugin_hook_handler', 600)
+register_plugin_hook('output', 'page', 'example_plugin_hook_handler', 600);
register_plugin_hook('output', 'page', 'example_plugin_hook_handler_2', 601);
function example_plugin_hook_handler($event, $type, $value, $params) {
// change A to @
$value = str_replace('A', '@', $value);
- return $value
+ return $value;
}
function example_plugin_hook_handler($event, $type, $value, $params) {
// change S to $
$value = str_replace('S', '$', $value);
- return $value
+ return $value;
}
$content = 'This is some Sample Content.';
-page_draw('Title', $content);
+page_draw('Title', $content); \ No newline at end of file
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;
}