From: Peter Rabbitson Date: Tue, 17 Jan 2012 13:00:52 +0000 (+0100) Subject: Fix ignored option to script/sqlt-diagram (RT#5992) X-Git-Tag: v0.11011~45 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=949968a8966e2c3ca179b148ee9e86918c15a476;p=dbsrgits%2FSQL-Translator.git Fix ignored option to script/sqlt-diagram (RT#5992) --- diff --git a/Changes b/Changes index 60da9b2..cb509a8 100644 --- a/Changes +++ b/Changes @@ -27,6 +27,7 @@ * Entire codebase is now free of tabs and trailing whitespace * Spellfixes (RT#68912) * Fix Diagram Producer POD (RT#71397, RT#71398) +* Fix ignored option to script/sqlt-diagram (RT#5992) # ---------------------------------------------------------- # 0.11010 2011-10-05 diff --git a/script/sqlt-diagram b/script/sqlt-diagram index 767eb6e..61c3ff3 100755 --- a/script/sqlt-diagram +++ b/script/sqlt-diagram @@ -83,7 +83,7 @@ $VERSION = '1.59'; # Get arguments. # my ( - $out_file, $image_type, $db_driver, $title, $num_columns, + $out_file, $output_type, $db_driver, $title, $num_columns, $no_lines, $font_size, $add_color, $debug, $show_fk_only, $gutter, $natural_join, $join_pk_only, $skip_fields, $skip_tables, $skip_tables_like, $help @@ -92,7 +92,7 @@ my ( GetOptions( 'd|db|f|from=s' => \$db_driver, 'o|output:s' => \$out_file, - 'i|image:s' => \$image_type, + 'i|image:s' => \$output_type, 't|title:s' => \$title, 'c|columns:i' => \$num_columns, 'n|no-lines' => \$no_lines, @@ -120,7 +120,7 @@ my $translator = SQL::Translator->new( debug => $debug || 0, producer_args => { out_file => $out_file, - image_type => $image_type, + output_type => $output_type, gutter => $gutter || 0, title => $title, num_columns => $num_columns,