aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-04-03 22:01:52 -0700
committerfriendica <info@friendica.com>2012-04-03 22:01:52 -0700
commit8e928d101b628c5f562cee840882892f05a1b838 (patch)
tree3d1e6ce8c5f044467d95844328ac15a4c6e79d0a /mod
parent466188ebd77a4ef07fce459d9a591f4b45b08d44 (diff)
downloadvolse-hubzilla-8e928d101b628c5f562cee840882892f05a1b838.tar.gz
volse-hubzilla-8e928d101b628c5f562cee840882892f05a1b838.tar.bz2
volse-hubzilla-8e928d101b628c5f562cee840882892f05a1b838.zip
display settings hooks
Diffstat (limited to 'mod')
-rwxr-xr-xmod/settings.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/settings.php b/mod/settings.php
index 926d1faa5..6879da285 100755
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -229,7 +229,7 @@ function settings_post(&$a) {
if ($theme == $a->user['theme']){
- // call theme_post only if theme has not benn changed
+ // call theme_post only if theme has not been changed
if( ($themeconfigfile = get_theme_config_file($theme)) != null){
require_once($themeconfigfile);
theme_post($a);
@@ -242,6 +242,7 @@ function settings_post(&$a) {
intval(local_user())
);
+ call_hooks('display_settings_post', $_POST);
goaway($a->get_baseurl(true) . '/settings/display' );
return; // NOTREACHED
}
@@ -679,6 +680,8 @@ function settings_content(&$a) {
'$settings_connectors' => $settings_connectors
));
+
+ call_hooks('display_settings', $o);
return $o;
}