fixed: Project Manager can't track non-integer durations
This commit is contained in:
parent
16f541276e
commit
d626868da1
2 changed files with 10 additions and 0 deletions
|
|
@ -9,6 +9,7 @@
|
|||
- fixed: subscription group in CS edit not internationalized
|
||||
- fixed: profile photos don't obey max image size
|
||||
- fixed: Unable to communicate with Spectre under alternate locales
|
||||
- fixed: Project Manager can't track non-integer durations
|
||||
|
||||
7.5.8
|
||||
- moved Gallery utility methods to WebGUI::Utility::Gallery
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ my $session = start(); # this line required
|
|||
ensureUTF8($session);
|
||||
addRichEditInlinePopup($session);
|
||||
updateRichEditorButtons($session);
|
||||
setPMFloatingDuration($session);
|
||||
|
||||
finish($session); # this line required
|
||||
|
||||
|
|
@ -37,6 +38,14 @@ finish($session); # this line required
|
|||
# print "DONE!\n" unless $quiet;
|
||||
#}
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
sub setPMFloatingDuration {
|
||||
my $session = shift;
|
||||
print "\tChanging Project manager to use floating numbers for duration... " unless $quiet;
|
||||
$session->db->write('ALTER TABLE `PM_task` MODIFY `duration` FLOAT');
|
||||
print "Done.\n" unless $quiet;
|
||||
}
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
sub addRichEditInlinePopup {
|
||||
my $session = shift;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue