aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Settings/Photos.php
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Module/Settings/Photos.php')
-rw-r--r--Zotlabs/Module/Settings/Photos.php5
1 files changed, 1 insertions, 4 deletions
diff --git a/Zotlabs/Module/Settings/Photos.php b/Zotlabs/Module/Settings/Photos.php
index f68c8847b..05c380850 100644
--- a/Zotlabs/Module/Settings/Photos.php
+++ b/Zotlabs/Module/Settings/Photos.php
@@ -33,7 +33,7 @@ class Photos {
$tpl = get_markup_template("settings_module.tpl");
- $o .= replace_macros($tpl, array(
+ return replace_macros($tpl, array(
'$rpath' => escape_url($rpath),
'$action_url' => 'settings/' . $module,
'$form_security_token' => get_form_security_token('settings_' . $module),
@@ -41,8 +41,5 @@ class Photos {
'$features' => process_module_features_get(local_channel(), $features),
'$submit' => t('Submit')
));
-
- return $o;
}
-
}