Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2012-02-14 19:04:03 +0400
committerMichal Čihař <mcihar@suse.cz>2012-02-14 19:04:03 +0400
commit57b3b484433f93755077f54226d7c8283984609b (patch)
tree91344904885c08b5efa6a38df1a4a5deb92ed2d4 /scripts
parenta8ee5d2b48fe79c206596c2b6ef30e9f33b81f92 (diff)
Remove ancient script for upgrading configuration
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/convertcfg.pl15
1 files changed, 0 insertions, 15 deletions
diff --git a/scripts/convertcfg.pl b/scripts/convertcfg.pl
deleted file mode 100755
index 69010fde0c..0000000000
--- a/scripts/convertcfg.pl
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/perl
-#
-#
-# 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
-#
-
-while(<>)
-{ s/\$cfg(\w+)/\$cfg\[\'$1\'\]/g;
- print;
- }
-
-