rfe: Search Asset returns URLs

This commit is contained in:
JT Smith 2007-10-26 16:29:25 +00:00
parent 99337c3473
commit 1b51697dbd
4 changed files with 60 additions and 33 deletions

View file

@ -1,5 +1,6 @@
7.5.0
- rfe: Default log level to ERROR
- rfe: Search Asset returns URLs
- Added link to return to inbox from message in inbox message template (Diona Kidd, Knowmad Technologies)
- fix: Cannot delete private message (Diona Kidd, Knowmad Technologies)
- fix: Workflow activities don't pick up new default values

View file

@ -20,19 +20,19 @@ my $quiet; # this line required
my $session = start(); # this line required
# upgrade functions go here
addFriendsNetwork($session);
addSearchWithContainers($session);
finish($session); # this line required
##-------------------------------------------------
#sub exampleFunction {
# my $session = shift;
# print "\tWe're doing some stuff here that you should know about..." unless $quiet;
# # and here's our code
# print "DONE!\n" unless $quiet;
#}
#-------------------------------------------------
sub addSearchWithContainers {
my $session = shift;
print "\tMaking search capable of displaying containers in search results instead of individaul assets." unless $quiet;
$session->db->write("alter table Search add column useContainers int not null default 0");
print "DONE!\n" unless $quiet;
}
#----------------------------------------------------------------------------
sub addFriendsNetwork {