diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2024-05-22 20:30:44 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2024-06-12 15:12:54 +0200 |
commit | ffc2455bea61df2fb0ecf1b39bc596541cb84c40 (patch) | |
tree | fc011c879222e7d69b3ab7a29a11c129581f7f2d /Zotlabs | |
parent | 0a818191c1a282768049ecb8f65180a75594afc1 (diff) | |
download | volse-hubzilla-ffc2455bea61df2fb0ecf1b39bc596541cb84c40.tar.gz volse-hubzilla-ffc2455bea61df2fb0ecf1b39bc596541cb84c40.tar.bz2 volse-hubzilla-ffc2455bea61df2fb0ecf1b39bc596541cb84c40.zip |
Module\Rbmark: Pass all fields to input field templates.
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Rbmark.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Module/Rbmark.php b/Zotlabs/Module/Rbmark.php index 8ac23a4e4..df32a97c2 100644 --- a/Zotlabs/Module/Rbmark.php +++ b/Zotlabs/Module/Rbmark.php @@ -78,12 +78,12 @@ class Rbmark extends \Zotlabs\Web\Controller { return replace_macros(get_markup_template('rbmark.tpl'), array( '$header' => t('Save Bookmark'), - '$url' => array('url',t('URL of bookmark'),$_REQUEST['url']), - '$title' => array('title',t('Description'),$_REQUEST['title']), + '$url' => array('url',t('URL of bookmark'),$_REQUEST['url'], null, null, null), + '$title' => array('title',t('Description'),$_REQUEST['title'], null, null, null), '$ischat' => ((x($_REQUEST,'ischat')) ? intval($_REQUEST['ischat']) : 0), '$private' => ((x($_REQUEST,'private')) ? intval($_REQUEST['private']) : 0), '$submit' => t('Save'), - '$menu_name' => array('menu_name',t('Or enter new bookmark folder name'),'',''), + '$menu_name' => array('menu_name',t('Or enter new bookmark folder name'),'','', null, null), '$menus' => $menu_select )); } |