Merge branch 'master' of git@github.com:plainblack/webgui

Conflicts:
	docs/changelog/7.x.x.txt
This commit is contained in:
Doug Bell 2009-09-15 20:17:31 -05:00
commit af4eff37f9
3 changed files with 3 additions and 1 deletions

View file

@ -39,6 +39,7 @@
- fixed #10913: User profiles: Impossible to delete field contents - fixed #10913: User profiles: Impossible to delete field contents
- fixed #10929: EMS Ticket Start Date Sort - fixed #10929: EMS Ticket Start Date Sort
- fixed #10885: Code Editor breaks Javascript comments - fixed #10885: Code Editor breaks Javascript comments
- fixed #10991: Calendar: bug in Display tab
- added direct value access in DataForm list view - added direct value access in DataForm list view
7.7.19 7.7.19

View file

@ -261,6 +261,7 @@ sub definition {
defaultValue => [], defaultValue => [],
serialize => 1, serialize => 1,
noFormPost => 1, noFormPost => 1,
autoGenerate => 0,
tab => "display", tab => "display",
}, },

View file

@ -136,7 +136,7 @@ BEGIN {
$line =~ s/^\s+//; $line =~ s/^\s+//;
$line =~ s/\s+$//; $line =~ s/\s+$//;
next LINE if !$line; next LINE if !$line;
push @INC, $line; unshift @INC, $line;
} }
close $PRELOAD; close $PRELOAD;
} }