Merge pull request #470 from ArthurHoaro/description-trim
Fixes #468: don't trim description
This commit is contained in:
commit
185447fbc6
1 changed files with 1 additions and 1 deletions
|
@ -1588,7 +1588,7 @@ function renderPage()
|
|||
$link = array(
|
||||
'title' => trim($_POST['lf_title']),
|
||||
'url' => $url,
|
||||
'description' => trim($_POST['lf_description']),
|
||||
'description' => $_POST['lf_description'],
|
||||
'private' => (isset($_POST['lf_private']) ? 1 : 0),
|
||||
'linkdate' => $linkdate,
|
||||
'tags' => str_replace(',', ' ', $tags)
|
||||
|
|
Loading…
Reference in a new issue