From: Sam H. v. a. <we...@ma...> - 2005-12-06 19:58:30
|
Log Message: ----------- removed useless debugging statement Modified Files: -------------- webwork2/lib/WeBWorK: ContentGenerator.pm Revision Data ------------- Index: ContentGenerator.pm =================================================================== RCS file: /webwork/cvs/system/webwork2/lib/WeBWorK/ContentGenerator.pm,v retrieving revision 1.156 retrieving revision 1.157 diff -Llib/WeBWorK/ContentGenerator.pm -Llib/WeBWorK/ContentGenerator.pm -u -r1.156 -r1.157 --- lib/WeBWorK/ContentGenerator.pm +++ lib/WeBWorK/ContentGenerator.pm @@ -1361,7 +1361,7 @@ sub optionsMacro { my ($self, %options) = @_; - debug("HELLO WORLD!"); + my @options_to_show = @{$options{options_to_show}} if exists $options{options_to_show}; @options_to_show = "displayMode" unless @options_to_show; my %options_to_show; @options_to_show{@options_to_show} = (); # make hash for easy lookups |