Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > media > contrib-backports > by-pkgid > d35128351ad9261b308e359785e0190e > files > 17

phpmyadmin-3.0.0-1mdv2008.1.noarch.rpm

#!/usr/bin/perl
#
# $Id: convertcfg.pl 5152 2003-11-18 15:20:45Z nijel $
#
# 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; 
	}