Add CSRF token to manage clipboard screen.
This commit is contained in:
parent
dfa64e5ac6
commit
9a6d5d6eb0
2 changed files with 5 additions and 2 deletions
|
|
@ -1,6 +1,7 @@
|
|||
7.7.16
|
||||
- Fix template not found diagnostics.
|
||||
- fixed #10665: Navigations with old templates still in 7.7.16
|
||||
- fixed #10662: Manage Clipboard / delete item
|
||||
|
||||
7.7.15
|
||||
- fixed #10629: WebGUI::ProfileField create new field bug
|
||||
|
|
|
|||
|
|
@ -488,8 +488,10 @@ $self->session->style->setLink($self->session->url->extras('assetManager/assetMa
|
|||
$output .= "assetManager.AddLineSortData('','".$title."','".$child->getName
|
||||
."','".$child->get("revisionDate")."','".$child->get("assetSize")."');\n";
|
||||
}
|
||||
$output .= 'assetManager.AddButton("'.$i18n->get("delete").'","deleteList","manageClipboard");
|
||||
assetManager.AddButton("'.$i18n->get("restore").'","restoreList","manageClipboard");
|
||||
$output .= '
|
||||
assetManager.AddButton("'.$i18n->get("delete").'","deleteList","manageClipboard");
|
||||
assetManager.AddButton("'.$i18n->get("restore").'","restoreList","manageClipboard");
|
||||
assetManager.AddFormHidden({ name:"webguiCsrfToken", value:"'.$self->session->scratch->get('webguiCsrfToken').'"});
|
||||
assetManager.Write();
|
||||
var assetListSelectAllToggle = false;
|
||||
function toggleAssetListSelectAll(form) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue