added a sort alphabetically option to the folder asset

This commit is contained in:
JT Smith 2006-04-14 02:35:35 +00:00
parent 6726f56af3
commit fd4453df58
5 changed files with 35 additions and 1 deletions

View file

@ -37,6 +37,7 @@
everything should cache in the same way.
- Converted WebGUI to use a new object oriented session system. More details
in migation.txt.
- Added a sort alphabetically option to the folder asset.
- Added a screenshot feature to the matrix.
- Added an option to delete Matrix fields.
- Added an API for retrieving email from POP3 servers.

View file

@ -45,9 +45,16 @@ updateHelpTemplate();
fixImportNodePrivileges();
addAdManager();
updateMatrix();
updateFolder();
finish($session); # this line required
#-------------------------------------------------
sub updateFolder {
print "\tAdding sort option to folder.\n";
$session->db->write("alter table Folder add column sortAlphabetically int not null default 0");
}
#-------------------------------------------------
sub updateMatrix {
print "\tAdding new features to the matrix.\n";