taking out an unapproved rfe
This commit is contained in:
parent
9a88b8756e
commit
17378e2e77
3 changed files with 0 additions and 12 deletions
|
|
@ -4,7 +4,6 @@
|
||||||
- rfe #10007: New Month and Year question type. If required, Month must be selected and a 4 digit year must be entered.
|
- rfe #10007: New Month and Year question type. If required, Month must be selected and a 4 digit year must be entered.
|
||||||
- fixed #10011: Wrong spelling of "Descendant" in Navigation Asset Help function (Rob Schipper/NFIA India)
|
- fixed #10011: Wrong spelling of "Descendant" in Navigation Asset Help function (Rob Schipper/NFIA India)
|
||||||
- rfe #9098: Thingy Thing-copy function (SDH Consulting Group)
|
- rfe #9098: Thingy Thing-copy function (SDH Consulting Group)
|
||||||
- rfe #9128: Thingy pretext and subtext fields maxlength too small (SDH Consulting Group)
|
|
||||||
- rfe #9099: Thingy field-copy function (SDH Consulting Group)
|
- rfe #9099: Thingy field-copy function (SDH Consulting Group)
|
||||||
|
|
||||||
7.7.0
|
7.7.0
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,6 @@ my $session = start(); # this line required
|
||||||
adSkuInstall($session);
|
adSkuInstall($session);
|
||||||
addWelcomeMessageTemplateToSettings( $session );
|
addWelcomeMessageTemplateToSettings( $session );
|
||||||
addStatisticsCacheTimeoutToMatrix( $session );
|
addStatisticsCacheTimeoutToMatrix( $session );
|
||||||
changeThingyFieldsPreTextAndSubtext( $session );
|
|
||||||
|
|
||||||
# image mods
|
# image mods
|
||||||
addImageAnnotation($session);
|
addImageAnnotation($session);
|
||||||
|
|
@ -82,14 +81,6 @@ sub addStatisticsCacheTimeoutToMatrix{
|
||||||
print "Done.\n" unless $quiet;
|
print "Done.\n" unless $quiet;
|
||||||
}
|
}
|
||||||
|
|
||||||
#----------------------------------------------------------------------------
|
|
||||||
sub changeThingyFieldsPreTextAndSubtext{
|
|
||||||
my $session = shift;
|
|
||||||
print "\tChanging pretext and subtext fields in Thingy_fields table... \n" unless $quiet;
|
|
||||||
$session->db->write("alter table Thingy_fields change subtext subtext text, change pretext pretext text;");
|
|
||||||
print "Done.\n" unless $quiet;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#----------------------------------------------------------------------------
|
#----------------------------------------------------------------------------
|
||||||
# Describe what our function does
|
# Describe what our function does
|
||||||
|
|
|
||||||
|
|
@ -739,14 +739,12 @@ sub getEditFieldForm {
|
||||||
-value=>$field->{pretext},
|
-value=>$field->{pretext},
|
||||||
-label=>$i18n->get('pretext label'),
|
-label=>$i18n->get('pretext label'),
|
||||||
-hoverHelp=>$i18n->get('pretext description'),
|
-hoverHelp=>$i18n->get('pretext description'),
|
||||||
-maxlength=>'1024',
|
|
||||||
);
|
);
|
||||||
$f->text(
|
$f->text(
|
||||||
-name=>"subtext",
|
-name=>"subtext",
|
||||||
-value=>$field->{subtext},
|
-value=>$field->{subtext},
|
||||||
-label=>$i18n->get('subtext label'),
|
-label=>$i18n->get('subtext label'),
|
||||||
-hoverHelp=>$i18n->get('subtext description'),
|
-hoverHelp=>$i18n->get('subtext description'),
|
||||||
-maxlength=>'1024',
|
|
||||||
);
|
);
|
||||||
$f->selectBox(
|
$f->selectBox(
|
||||||
-name=>"status",
|
-name=>"status",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue