taking out an unapproved rfe

This commit is contained in:
Yung Han Khoe 2009-03-25 21:59:09 +00:00
parent 9a88b8756e
commit 17378e2e77
3 changed files with 0 additions and 12 deletions

View file

@ -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.
- 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 #9128: Thingy pretext and subtext fields maxlength too small (SDH Consulting Group)
- rfe #9099: Thingy field-copy function (SDH Consulting Group)
7.7.0

View file

@ -34,7 +34,6 @@ my $session = start(); # this line required
adSkuInstall($session);
addWelcomeMessageTemplateToSettings( $session );
addStatisticsCacheTimeoutToMatrix( $session );
changeThingyFieldsPreTextAndSubtext( $session );
# image mods
addImageAnnotation($session);
@ -82,14 +81,6 @@ sub addStatisticsCacheTimeoutToMatrix{
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

View file

@ -739,14 +739,12 @@ sub getEditFieldForm {
-value=>$field->{pretext},
-label=>$i18n->get('pretext label'),
-hoverHelp=>$i18n->get('pretext description'),
-maxlength=>'1024',
);
$f->text(
-name=>"subtext",
-value=>$field->{subtext},
-label=>$i18n->get('subtext label'),
-hoverHelp=>$i18n->get('subtext description'),
-maxlength=>'1024',
);
$f->selectBox(
-name=>"status",