Translation update done using Pootle.
[phpmyadmin/dkf.git] / scripts / convertcfg.pl
blob14c0709f1fb7fb620d8e007f2abc4f66e7215e74
1 #!/usr/bin/perl
3 # $Id$
5 # Configuration converter
6 # Converts from old-style (Pre-2.3) configuration files to new format found in PMA-2.3
8 # Takes input from STDIN, sends output to STDOUT
11 while(<>)
12 { s/\$cfg(\w+)/\$cfg\[\'$1\'\]/g;
13 print;