remove unneeded ampersand
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@685 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
parent
d665bb742e
commit
46c13c46f2
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ if ($userservice->isLoggedOn() && POST_SUBMITTED != '') {
|
|||
$address = trim(POST_ADDRESS);
|
||||
// If the bookmark exists already, edit the original
|
||||
if ($bookmarkservice->bookmarkExists($address, $currentUserID)) {
|
||||
$bookmark =& $bookmarkservice->getBookmarkByAddress($address);
|
||||
$bookmark = $bookmarkservice->getBookmarkByAddress($address);
|
||||
header('Location: '. createURL('edit', $bookmark['bId']));
|
||||
exit();
|
||||
// If it's new, save it
|
||||
|
|
Loading…
Reference in a new issue