diff options
author | Mario <mario@mariovavti.com> | 2023-09-21 08:34:02 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-09-21 08:34:02 +0000 |
commit | a5e32dc3de997c3a3d9046161ce1ec149abb65c1 (patch) | |
tree | 3c7312f8bc2bcc6083d9b96408c5816ff79acb71 /include/conversation.php | |
parent | 150174c3bb5578e0dfc20ac97a061d170fc90f5a (diff) | |
download | volse-hubzilla-a5e32dc3de997c3a3d9046161ce1ec149abb65c1.tar.gz volse-hubzilla-a5e32dc3de997c3a3d9046161ce1ec149abb65c1.tar.bz2 volse-hubzilla-a5e32dc3de997c3a3d9046161ce1ec149abb65c1.zip |
more deprecate $a
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/conversation.php b/include/conversation.php index 5e63c4199..f8d5f7ec0 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1306,11 +1306,11 @@ function format_like($cnt, $arr, $type, $id) { /** * Wrapper to allow addons to replace the status editor if desired. */ -function status_editor($a, $x, $popup = false, $module='') { +function status_editor($x, $popup = false, $module='') { $hook_info = ['editor_html' => '', 'x' => $x, 'popup' => $popup, 'module' => $module]; call_hooks('status_editor',$hook_info); if ($hook_info['editor_html'] == '') { - return hz_status_editor($a, $x, $popup); + return hz_status_editor($x, $popup); } else { return $hook_info['editor_html']; } @@ -1322,7 +1322,7 @@ function status_editor($a, $x, $popup = false, $module='') { * They are referring to the content editor or components thereof. */ -function hz_status_editor($a, $x, $popup = false) { +function hz_status_editor($x, $popup = false) { $o = ''; |