fixed: Form::FieldType->getTypes should exclude Form::Slider base class
This commit is contained in:
parent
21f4a85055
commit
60ef5ffdf2
2 changed files with 2 additions and 1 deletions
|
|
@ -4,6 +4,7 @@
|
|||
- make sure all tables are using UTF-8
|
||||
- fixed: Poll question/answers with international text corrupted
|
||||
- fixed: Thingy: on demo sites the edit and delete icons in search results have wrong url's
|
||||
- fixed: Form::FieldType->getTypes should exclude Form::Slider base class (Yung Han Khoe)
|
||||
- upgraded to TinyMCE 3
|
||||
|
||||
7.5.8
|
||||
|
|
|
|||
|
|
@ -105,7 +105,7 @@ sub getTypes {
|
|||
my @types;
|
||||
foreach my $type (@rawTypes) {
|
||||
if ($type =~ /^(.*)\.pm$/) {
|
||||
next if (isIn($1, qw/Control List DynamicField/));
|
||||
next if (isIn($1, qw/Control List DynamicField Slider/));
|
||||
push(@types,$1);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue