Fix bug #3388219: Incorrect URL when cancelling tag2tag-actions

This commit is contained in:
Christian Weiske 2011-08-19 19:16:45 +02:00
parent adf2655b23
commit 5d929ec8e0
3 changed files with 3 additions and 2 deletions

View File

@ -8,6 +8,7 @@ ChangeLog for SemantiScuttle
- Fix bug: URLs were escaped too often in bookmark list
- Fix bug: Subtitle was not escaped
- Fix bug #3393951: Logo images missing on bookmark page
- Fix bug #3388219: Incorrect URL when cancelling tag2tag-actions
0.98.3 - 2011-08-09

View File

@ -59,7 +59,7 @@ if (POST_CONFIRM != '') {
exit();
}
} elseif (POST_CANCEL) {
header('Location: '. createURL('bookmarks', $currentUser->getUsername() .'/'. $tags));
header('Location: '. createURL('bookmarks', $currentUser->getUsername() .'/'. $tag1));
}
$tplVars['links'] = $tag2tagservice->getLinks($currentUser->getId());

View File

@ -71,7 +71,7 @@ if (POST_CONFIRM) {
exit();
}
} elseif (POST_CANCEL) {
header('Location: '. createURL('bookmarks', $currentUser->getUsername() .'/'. $tags));
header('Location: '. createURL('bookmarks', $currentUser->getUsername() .'/'. $tag1));
}
$tplVars['links'] = $tag2tagservice->getLinks($currentUser->getId());