When processing templates during an upgrade, it has to be done after importing packages.
This commit is contained in:
parent
bcecfec0e9
commit
987ee3e1fe
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,6 @@ my $session = start(); # this line required
|
|||
addIndexToUserSessionLog($session);
|
||||
addHeightToCarousel($session);
|
||||
synchronizeUserProfileTables($session);
|
||||
migrateAttachmentsToJson( $session );
|
||||
|
||||
finish($session); # this line required
|
||||
|
||||
|
|
@ -172,6 +171,7 @@ sub start {
|
|||
sub finish {
|
||||
my $session = shift;
|
||||
updateTemplates($session);
|
||||
migrateAttachmentsToJson( $session );
|
||||
my $versionTag = WebGUI::VersionTag->getWorking($session);
|
||||
$versionTag->commit;
|
||||
$session->db->write("insert into webguiVersion values (".$session->db->quote($toVersion).",'upgrade',".time().")");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue