diff options
author | ArthurHoaro <arthur@hoa.ro> | 2017-01-17 09:54:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-17 09:54:25 +0100 |
commit | 679b6b40db1b654347e0b4785131796f7e3b8865 (patch) | |
tree | 418036ec908cd5a5756da54ff40e95c272a5cb02 /index.php | |
parent | 078fcb56ad6bcec203ff91d956e03cf1605a93af (diff) | |
parent | b87442f216e6745b8472b85ae8fe5d85ede29094 (diff) | |
download | Shaarli-679b6b40db1b654347e0b4785131796f7e3b8865.tar.gz Shaarli-679b6b40db1b654347e0b4785131796f7e3b8865.tar.zst Shaarli-679b6b40db1b654347e0b4785131796f7e3b8865.zip |
Merge pull request #767 from ArthurHoaro/feature/delete-tag-redirect
Stay on the changetag page after tag deletion
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1208,7 +1208,7 @@ function renderPage($conf, $pluginManager, $LINKSDB) | |||
1208 | $LINKSDB[$key]=$value; | 1208 | $LINKSDB[$key]=$value; |
1209 | } | 1209 | } |
1210 | $LINKSDB->save($conf->get('resource.page_cache')); | 1210 | $LINKSDB->save($conf->get('resource.page_cache')); |
1211 | echo '<script>alert("Tag was removed from '.count($linksToAlter).' links.");document.location=\'?\';</script>'; | 1211 | echo '<script>alert("Tag was removed from '.count($linksToAlter).' links.");document.location=\'?do=changetag\';</script>'; |
1212 | exit; | 1212 | exit; |
1213 | } | 1213 | } |
1214 | 1214 | ||