getCurrentUser(); //permissions if($logged_on_user == null) { $tplVars['error'] = T_('Permission denied.'); $templateservice->loadTemplate('error.500.tpl', $tplVars); exit(); } if ($_POST['confirm']) { if (strlen($hash)>0 && $cdservice->addBookmarkDescription($_POST['hash'], stripslashes($_POST['title']), stripslashes($_POST['description']), $logged_on_user['uId'], time()) ) { $tplVars['msg'] = T_('Bookmark common description updated'); header('Location: '. $_POST['referrer']); } else { $tplVars['error'] = T_('Failed to update the bookmark common description'); $template = 'error.500.tpl'; } } elseif ($_POST['cancel']) { $logged_on_user = $userservice->getCurrentUser(); header('Location: '. $_POST['referrer']); } else { $bkm = $bookmarkservice->getBookmarkByHash($hash); $tplVars['subtitle'] = T_('Edit Bookmark Common Description') .': '. $bkm['bAddress']; $tplVars['formaction'] = $_SERVER['SCRIPT_NAME'] .'/'. $hash; $tplVars['referrer'] = $_SERVER['HTTP_REFERER']; $tplVars['hash'] = $hash; $tplVars['description'] = $cdservice->getLastBookmarkDescription($hash); } $templateservice->loadTemplate($template, $tplVars); ?>