aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Rbmark.php
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Module/Rbmark.php')
-rw-r--r--Zotlabs/Module/Rbmark.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/Zotlabs/Module/Rbmark.php b/Zotlabs/Module/Rbmark.php
index b1aea2590..df32a97c2 100644
--- a/Zotlabs/Module/Rbmark.php
+++ b/Zotlabs/Module/Rbmark.php
@@ -73,16 +73,17 @@ class Rbmark extends \Zotlabs\Web\Controller {
false,
'',
$this->get_bookmark_folders(intval($channel_id)),
+ null,
];
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
));
}