From: Greg Sabino Mullane Date: Sun, 16 Mar 2008 20:07:40 +0000 (+0000) Subject: One of them semicolons snuck out of the barn again... X-Git-Tag: 1.31.0-rc.0~49065 X-Git-Url: http://git.cyclocoop.org/%22.htmlspecialchars%28%24url_syndic%29.%22?a=commitdiff_plain;h=53c0a5c3a8f18ada790a6e9e0a001dc49d6866b8;p=lhc%2Fweb%2Fwiklou.git One of them semicolons snuck out of the barn again... --- diff --git a/maintenance/postgres/mediawiki_mysql2postgres.pl b/maintenance/postgres/mediawiki_mysql2postgres.pl index eb87eebf51..54eebf7550 100644 --- a/maintenance/postgres/mediawiki_mysql2postgres.pl +++ b/maintenance/postgres/mediawiki_mysql2postgres.pl @@ -274,7 +274,7 @@ $verbose and warn qq{Writing truncates to empty existing tables\n}; for my $t (@torder, 'objectcache', 'querycache') { next if $t eq '---'; my $tname = $special{$t}||$t; - printf qq{TRUNCATE TABLE %-20s\n}, qq{"$tname"}; + printf qq{TRUNCATE TABLE %-20s;\n}, qq{"$tname"}; } print "\n\n";