diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2024-06-12 17:08:29 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2024-06-13 13:34:20 +0200 |
commit | fb1c66fbc9705961454d86770511642b97b41c1a (patch) | |
tree | b1dc55f9250cce0d4f23db9210aca6cfbff96dd9 /Zotlabs/Module | |
parent | d02fa7c26805dd485b1d16e99a26a5b9a858deda (diff) | |
download | volse-hubzilla-fb1c66fbc9705961454d86770511642b97b41c1a.tar.gz volse-hubzilla-fb1c66fbc9705961454d86770511642b97b41c1a.tar.bz2 volse-hubzilla-fb1c66fbc9705961454d86770511642b97b41c1a.zip |
Fix warnings exposed by tests.
Mainly missing variables for templates, and channel entries.
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Rpost.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Module/Rpost.php b/Zotlabs/Module/Rpost.php index 76ff69643..3b64fd2d8 100644 --- a/Zotlabs/Module/Rpost.php +++ b/Zotlabs/Module/Rpost.php @@ -119,7 +119,8 @@ class Rpost extends \Zotlabs\Web\Controller { return replace_macros(get_markup_template('edpost_head.tpl'), array( '$title' => t('Edit post'), '$cancel' => '', - '$editor' => $editor + '$editor' => $editor, + '$delete' => null, )); } |