Merge pull request #716 from ArthurHoaro/hotfix/editoldlinks

Fix a regression: permalinks change when old links are edited
This commit is contained in:
Arthur 2016-12-15 11:41:22 +01:00 committed by GitHub
commit c0d96ce590
1 changed files with 3 additions and 1 deletions

View File

@ -1249,10 +1249,12 @@ function renderPage($conf, $pluginManager)
// Edit
$created = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $linkdate);
$updated = new DateTime();
$shortUrl = $LINKSDB[$id]['shorturl'];
} else {
// New link
$created = DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, $linkdate);
$updated = null;
$shortUrl = link_small_hash($created, $id);
}
// Remove multiple spaces.
@ -1279,7 +1281,7 @@ function renderPage($conf, $pluginManager)
'created' => $created,
'updated' => $updated,
'tags' => str_replace(',', ' ', $tags),
'shorturl' => link_small_hash($created, $id),
'shorturl' => $shortUrl,
);
// If title is empty, use the URL as title.