diff options
author | Friendika <info@friendika.com> | 2010-12-22 20:23:41 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-12-22 20:23:41 -0800 |
commit | d8969bb84b7a710bf77f23de0d392a192dfc8f53 (patch) | |
tree | 1bf8cc90900dcf52f66b7c09a453acb5133a9b6a /mod/settings.php | |
parent | e287014b98a4688fa2051fb03e8e9032b380dcb8 (diff) | |
download | volse-hubzilla-d8969bb84b7a710bf77f23de0d392a192dfc8f53.tar.gz volse-hubzilla-d8969bb84b7a710bf77f23de0d392a192dfc8f53.tar.bz2 volse-hubzilla-d8969bb84b7a710bf77f23de0d392a192dfc8f53.zip |
add more plugin hooks, etc.
Diffstat (limited to 'mod/settings.php')
-rw-r--r-- | mod/settings.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mod/settings.php b/mod/settings.php index b86ff4c1c..4743ecd66 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -14,6 +14,9 @@ function settings_post(&$a) { notice( t('Permission denied.') . EOL); return; } + + call_hooks('settings_post', $_POST); + if(count($a->user) && x($a->user,'uid') && $a->user['uid'] != local_user()) { notice( t('Permission denied.') . EOL); return; @@ -298,6 +301,9 @@ function settings_content(&$a) { '$pagetype' => $pagetype )); + call_hooks('settings_page',$o); + return $o; -}}
\ No newline at end of file +}} + |