diff options
author | ArthurHoaro <arthur@hoa.ro> | 2018-09-20 23:34:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-20 23:34:44 +0200 |
commit | a4fbe88b6d007094fa395b17802e593ecca0588b (patch) | |
tree | ebbb08270fd77d3dec447054fb65801a2b28a625 /index.php | |
parent | bede8e1b633d720d6a7d1b05ba367811f3ac2b87 (diff) | |
parent | 4fa9a3c5d83a1024678596a586afe5df14a345b5 (diff) | |
download | Shaarli-a4fbe88b6d007094fa395b17802e593ecca0588b.tar.gz Shaarli-a4fbe88b6d007094fa395b17802e593ecca0588b.tar.zst Shaarli-a4fbe88b6d007094fa395b17802e593ecca0588b.zip |
Merge pull request #1215 from ArthurHoaro/hotfix/tag-deletion
Fix a JS bug preventing AJAX tag deletion to work
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1084,7 +1084,8 @@ function renderPage($conf, $pluginManager, $LINKSDB, $history, $sessionManager, | |||
1084 | die(t('Wrong token.')); | 1084 | die(t('Wrong token.')); |
1085 | } | 1085 | } |
1086 | 1086 | ||
1087 | $alteredLinks = $LINKSDB->renameTag(escape($_POST['fromtag']), escape($_POST['totag'])); | 1087 | $toTag = isset($_POST['totag']) ? escape($_POST['totag']) : null; |
1088 | $alteredLinks = $LINKSDB->renameTag(escape($_POST['fromtag']), $toTag); | ||
1088 | $LINKSDB->save($conf->get('resource.page_cache')); | 1089 | $LINKSDB->save($conf->get('resource.page_cache')); |
1089 | foreach ($alteredLinks as $link) { | 1090 | foreach ($alteredLinks as $link) { |
1090 | $history->updateLink($link); | 1091 | $history->updateLink($link); |