Fix bug #3388219: Incorrect URL when cancelling tag2tag-actions
This commit is contained in:
parent
adf2655b23
commit
5d929ec8e0
@ -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
|
||||
|
@ -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());
|
||||
|
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user