aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Rbmark.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-06-13 09:37:21 +0000
committerMario <mario@mariovavti.com>2024-06-13 09:37:21 +0000
commit6a63a38e8d4423fa317ce3e3bc6d537b098821c4 (patch)
tree53768900bf54f7faadd921917f67a3bd7c942a4e /Zotlabs/Module/Rbmark.php
parent088a87914f7bbe5bb45ea125ae3c1b1a8ef0ed80 (diff)
parentac1e20b1880d57aab2048e670449768d51dbc0b0 (diff)
downloadvolse-hubzilla-6a63a38e8d4423fa317ce3e3bc6d537b098821c4.tar.gz
volse-hubzilla-6a63a38e8d4423fa317ce3e3bc6d537b098821c4.tar.bz2
volse-hubzilla-6a63a38e8d4423fa317ce3e3bc6d537b098821c4.zip
Merge branch 'fix-test-warnings' into 'dev'
Fix test warnings See merge request hubzilla/core!2134
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
));
}