The title in the bookmarklet had several asterisk in the title. This had no use for friendica.

This commit is contained in:
Michael Vogel 2015-02-06 21:10:49 +01:00
parent aa720eb277
commit 89f260eb6c
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ function bookmarklet_content(&$a) {
'visitor' => 'block',
'profile_uid' => local_user(),
'acl_data' => construct_acl_data($a, $a->user), // For non-Javascript ACL selector
'title' => $_REQUEST["title"],
'title' => trim($_REQUEST["title"], "*"),
'content' => $content
);
$o = status_editor($a,$x, 0, false);