Files
phpmyadmin/scripts/convertcfg.pl
Robin Johnson 8a063666bc Updated comments.
Added configuration converter file.
2002-04-24 19:14:20 +00:00

20 lines
358 B
Perl
Executable File

#!/usr/local/bin/perl
#
# $Id$
#
# Configuration converter
# Converts from old-style (Pre-2.3) configuration files to new format found in PMA-2.3
#
# Takes input from STDIN, sends output to STDOUT
#
# By Robin Johnson robbat2@users.sourceforge.net
# Many thanks to Patrick Lougheed pat@tfsb.org
#
while(<>)
{ s/\$cfg(\w+)/\$cfg\[\'$1\'\]/g;
print;
}