- fix: A bug where it was possible to delete a system page if it were made
the child of a non-system page that you had edit rights to. - api: Added a unified contraints system for the file and image assets. - fixed several problems with the new attachments control, setup, and tempspace
This commit is contained in:
parent
58ac54b81d
commit
884953607c
11 changed files with 226 additions and 94 deletions
|
|
@ -13,6 +13,9 @@
|
|||
- Graphics::Magick is now the standard graphics package in WebGUI, but
|
||||
Image::Magick will be supported for backwards compatibility. See gotcha.txt
|
||||
for details.
|
||||
- fix: A bug where it was possible to delete a system page if it were made
|
||||
the child of a non-system page that you had edit rights to.
|
||||
- api: Added a unified contraints system for the file and image assets.
|
||||
- Added file attachments to the Wiki.
|
||||
- Added a new attachments form control.
|
||||
- Added a form control skeleton.
|
||||
|
|
|
|||
|
|
@ -98,6 +98,7 @@ sub addWikiAttachments {
|
|||
$db->write("alter table WikiPage drop column storageId");
|
||||
my $root = WebGUI::Asset->getRoot($session);
|
||||
$root->addChild({title=>"Tempspace", url=>"tempspace", className=>"WebGUI::Asset::Wobject::Folder"}, "tempspace0000000000000");
|
||||
$db->write("update asset set isSystem=1 where assetId=?", ["tempspace0000000000000"]);
|
||||
}
|
||||
|
||||
#-------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue