fixed a search indexer problem and a tabs.css conflict with tinymce
This commit is contained in:
parent
8045055d12
commit
518d820a5e
5 changed files with 18 additions and 12 deletions
|
|
@ -36,6 +36,8 @@
|
|||
- fix: JavaScript race condition in dashlet prefs form
|
||||
- fix: caching problem with overrides in dashlets
|
||||
- fix: CS pagination does not work for visitors
|
||||
- fixed a problem in the search indexer and made the tabform css compatible
|
||||
with tinymce. (Martin Kamerbeek / Procolix)
|
||||
|
||||
7.0.6
|
||||
- fix: Error in DateTime.pm
|
||||
|
|
|
|||
|
|
@ -21,16 +21,18 @@ my $quiet; # this line required
|
|||
my $session = start(); # this line required
|
||||
|
||||
# upgrade functions go here
|
||||
dropLineageInAssetIndex($session);
|
||||
|
||||
finish($session); # this line required
|
||||
|
||||
|
||||
##-------------------------------------------------
|
||||
#sub exampleFunction {
|
||||
# my $session = shift;
|
||||
# print "\tWe're doing some stuff here that you should know about.\n" unless ($quiet);
|
||||
# # and here's our code
|
||||
#}
|
||||
#-------------------------------------------------
|
||||
sub dropLineageInAssetIndex {
|
||||
my $session = shift;
|
||||
print "\tDropping lineage column in assetIndex table.\n" unless ($quiet);
|
||||
|
||||
$session->db->write('alter table assetIndex drop column lineage');
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue