]> git.joonet.de Git - adminer.git/commitdiff
Rename to Adminer
authorjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Mon, 8 Jun 2009 19:02:30 +0000 (19:02 +0000)
committerjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Mon, 8 Jun 2009 19:02:30 +0000 (19:02 +0000)
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@662 7c3ca157-0c34-0410-bff1-cbf682f78f5c

40 files changed:
_compile.php
_coverage.php
changes.txt
dump.inc.php
functions.js
include/design.inc.php
include/export.inc.php
index.php
lang/cs.inc.php
lang/de.inc.php
lang/es.inc.php
lang/et.inc.php
lang/fr.inc.php
lang/it.inc.php
lang/nl.inc.php
lang/ru.inc.php
lang/sk.inc.php
lang/zh.inc.php
tests/0-login.html
tests/1-create-database.html
tests/10-clone.html
tests/11-reference.html
tests/12-update.html
tests/13-delete.html
tests/14-truncate.html
tests/15-privileges.html
tests/16-processlist.html
tests/17-export.html
tests/18-events.html
tests/19-procedures.html
tests/2-create-table.html
tests/20-partitioning.html
tests/3-create-index.html
tests/4-create-table-2.html
tests/5-foreign-key.html
tests/6-alter-table.html
tests/7-create-trigger.html
tests/8-create-view.html
tests/9-insert.html
tests/logout.html

index 59f482d8ead14db90e5dd3229cae6467ac9567e0..f20ad259948422a21bf350c0f29e6db55f99989e 100644 (file)
@@ -157,13 +157,13 @@ if ($_SERVER["argc"] > 1) {
        $_COOKIE["lang"] = $_SERVER["argv"][1];
        include dirname(__FILE__) . "/include/lang.inc.php";
        if ($_SERVER["argc"] != 2 || !isset($langs[$_COOKIE["lang"]])) {
-               echo "Usage: php _compile.php [lang]\nPurpose: Compile phpMinAdmin[-lang].php from index.php.\n";
+               echo "Usage: php _compile.php [lang]\nPurpose: Compile adminer[-lang].php from index.php.\n";
                exit(1);
        }
        include dirname(__FILE__) . "/lang/$_COOKIE[lang].inc.php";
 }
 
-$filename = "phpMinAdmin" . ($_COOKIE["lang"] ? "-$_COOKIE[lang]" : "") . ".php";
+$filename = "adminer" . ($_COOKIE["lang"] ? "-$_COOKIE[lang]" : "") . ".php";
 $file = file_get_contents(dirname(__FILE__) . "/index.php");
 $file = preg_replace_callback('~\\b(include|require) "([^"]*)";~', 'put_file', $file);
 $file = preg_replace("~if \\(isset\\(\\\$_SESSION\\[\"coverage.*\n}\n| && !isset\\(\\\$_SESSION\\[\"coverage\"\\]\\)~sU", '', $file);
index 75db5f1f6018240d64cc416261779da3a9c41930..8363ca46df060c0ea25e789496d48f0942c995fa 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 error_reporting(E_ALL & ~E_NOTICE);
 if (!ini_get("session.auto_start")) {
-       session_name("phpMinAdmin_SID");
+       session_name("adminer_sid");
        session_set_cookie_params(ini_get("session.cookie_lifetime"), preg_replace('~_coverage\\.php(\\?.*)?$~', '', $_SERVER["REQUEST_URI"]));
        session_start();
 }
index 067e80129080c815d499d54b98ded7edf40cb0b8..1535fd087c2b2e13be15741772eec513ff0bc262 100644 (file)
@@ -1,4 +1,4 @@
-phpMinAdmin 1.11.0:
+Adminer 1.11.0:
 Connection through socket by server :/path/to/socket
 Simplify export
 Display execution time in SQL query
index 7512aeb068441c439ec6e05d6a3ef2ddd7295b1e..fcf319ed4afe64d0814674ee5cb88a0e97e7519d 100644 (file)
@@ -87,7 +87,7 @@ if ($_POST) {
                                $query = "SELECT TABLE_NAME, ENGINE, TABLE_COLLATION, TABLE_COMMENT FROM information_schema.TABLES WHERE TABLE_SCHEMA = DATABASE()";
 ?>
 DELIMITER ;;
-CREATE PROCEDURE phpminadmin_drop () BEGIN
+CREATE PROCEDURE adminer_drop () BEGIN
        DECLARE _table_name, _engine, _table_collation varchar(64);
        DECLARE _table_comment varchar(64);
        DECLARE done bool DEFAULT 0;
@@ -121,8 +121,8 @@ $result->free();
        CLOSE tables;
 END;;
 DELIMITER ;
-CALL phpminadmin_drop;
-DROP PROCEDURE phpminadmin_drop;
+CALL adminer_drop;
+DROP PROCEDURE adminer_drop;
 <?php
                        }
                }
index 0c94a34081a1dc84ca40d34331285e3efc15df54..1a7aec05858d1a718f78dc6ddfb37fe95278ec5f 100644 (file)
@@ -15,9 +15,9 @@ function popdown(el) {
 }
 
 function verify_version(version) {
-       document.cookie = 'phpMinAdmin_version=0';
+       document.cookie = 'adminer_version=0';
        var script = document.createElement('script');
-       script.src = 'http://www.phpminadmin.net/version.php?version=' + version;
+       script.src = 'http://www.adminer.org/version.php?version=' + version;
        document.body.appendChild(script);
 }
 
index 1ee8099f2b7ce73953e806a184609b65778f1c16..f3046352333e9e609bfecb6caab3e93ea51d68b4 100644 (file)
@@ -9,15 +9,15 @@ function page_header($title, $error = "", $breadcrumb = array(), $title2 = "") {
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <meta http-equiv="Content-Script-Type" content="text/javascript" />
 <meta name="robots" content="noindex" />
-<title><?php echo $title . (strlen($title2) ? ": " . htmlspecialchars($title2) : "") . " - " . lang('phpMinAdmin'); ?></title>
+<title><?php echo $title . (strlen($title2) ? ": " . htmlspecialchars($title2) : "") . " - " . lang('Adminer'); ?></title>
 <link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
 <link rel="stylesheet" type="text/css" href="default.css<?php // Ondrej Valka, http://valka.info ?>" />
-<?php if (file_exists("phpMinAdmin.css")) { ?>
-<link rel="stylesheet" type="text/css" href="phpMinAdmin.css" />
+<?php if (file_exists("adminer.css")) { ?>
+<link rel="stylesheet" type="text/css" href="adminer.css" />
 <?php } ?>
 </head>
 
-<body onload="load_jush();<?php echo (isset($_COOKIE["phpMinAdmin_version"]) ? "" : " verify_version('$VERSION');"); ?>">
+<body onload="load_jush();<?php echo (isset($_COOKIE["adminer_version"]) ? "" : " verify_version('$VERSION');"); ?>">
 <script type="text/javascript" src="functions.js"></script>
 
 <div id="content">
@@ -61,8 +61,8 @@ function page_footer($missing = false) {
 
 <?php switch_lang(); ?>
 <div id="menu">
-<h1><a href="http://www.phpminadmin.net/"><?php echo lang('phpMinAdmin'); ?></a> <?php echo $VERSION; ?></h1>
-<div class="version"><a href='http://www.phpminadmin.net/#download' id="version"><?php echo (version_compare($VERSION, $_COOKIE["phpMinAdmin_version"]) < 0 ? htmlspecialchars($_COOKIE["phpMinAdmin_version"]) : ""); ?></a></div>
+<h1><a href="http://www.adminer.org/"><?php echo lang('Adminer'); ?></a> <?php echo $VERSION; ?></h1>
+<div class="version"><a href='http://www.adminer.org/#download' id="version"><?php echo (version_compare($VERSION, $_COOKIE["adminer_version"]) < 0 ? htmlspecialchars($_COOKIE["adminer_version"]) : ""); ?></a></div>
 <?php if ($missing != "auth") { ?>
 <form action="" method="post">
 <p>
index ca706dc3ea05e0e25e98d9ba0968215749fa3feb..65b68f3aa52d3e697680ee8eec7c4e1b5db6ca99 100644 (file)
@@ -29,7 +29,7 @@ function dump_table($table, $style, $is_view = false) {
                        $query = "SELECT COLUMN_NAME, COLUMN_DEFAULT, IS_NULLABLE, COLLATION_NAME, COLUMN_TYPE, EXTRA, COLUMN_COMMENT FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = '" . $dbh->escape_string($table) . "' ORDER BY ORDINAL_POSITION";
 ?>
 DELIMITER ;;
-CREATE PROCEDURE phpminadmin_alter () BEGIN
+CREATE PROCEDURE adminer_alter () BEGIN
        DECLARE _column_name, _collation_name, _column_type, after varchar(64) DEFAULT '';
        DECLARE _column_default longtext;
        DECLARE _is_nullable char(3);
@@ -95,8 +95,8 @@ foreach ($fields as $row) {
        END IF;
 END;;
 DELIMITER ;
-CALL phpminadmin_alter;
-DROP PROCEDURE phpminadmin_alter;
+CALL adminer_alter;
+DROP PROCEDURE adminer_alter;
 
 <?php
                        //! indexes
index 94a62ec6cf0349e0864969f49ad80d15e9e9e671..8b91c6b6bc0d4b87052ee21926f726b859002b82 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1,6 +1,6 @@
 <?php
-/** phpMinAdmin - Compact MySQL management
-* @link http://www.phpminadmin.net/
+/** Adminer - Compact MySQL management
+* @link http://www.adminer.org/
 * @author Jakub Vrana, http://php.vrana.cz/
 * @copyright 2007 Jakub Vrana
 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
@@ -8,7 +8,7 @@
 
 error_reporting(E_ALL & ~E_NOTICE);
 if (!ini_get("session.auto_start")) {
-       session_name("phpMinAdmin_SID");
+       session_name("adminer_sid");
        session_set_cookie_params(0, preg_replace('~\\?.*~', '', $_SERVER["REQUEST_URI"]));
        session_start();
 }
index 08c8fc3a8d3c4461da9ba8b6bb868339237dbe9a..6155aee066dfe00fc45fa42578e89b2368de7756 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 $translations = array(
        'Login' => 'Přihlásit se',
-       'phpMinAdmin' => 'phpMinAdmin',
+       'Adminer' => 'Adminer',
        'Logout successful.' => 'Odhlášení proběhlo v pořádku.',
        'Invalid credentials.' => 'Neplatné přihlašovací údaje.',
        'Server' => 'Server',
index 07469ccd70da361974cb634f2a999b9a958285ae..3a7247728a901718facb44a953f2059693b08a5b 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 $translations = array(
        'Login' => 'Login',
-       'phpMinAdmin' => 'phpMinAdmin',
+       'Adminer' => 'Adminer',
        'Logout successful.' => 'Abmeldung erfolgreich.',
        'Invalid credentials.' => 'Ungültige Anmelde-Informationen.',
        'Server' => 'Server',
index 9d91ee9b5e7ba12f60a6bce690f4de97cb0c5b08..9b422c5600a44964290bc4981ee72d5e1f5764b2 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 $translations = array(
        'Login' => 'Login',
-       'phpMinAdmin' => 'phpMinAdmin',
+       'Adminer' => 'Adminer',
        'Logout successful.' => 'Salida exitosa.',
        'Invalid credentials.' => 'Autenticación fallada.',
        'Server' => 'Servidor',
index f626d817457c9239880cd15822bf059ee0bca052..23173c8de9ae967564f091ff8b6c34bf0d80ab6e 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 $translations = array(
        'Login' => 'Logi sisse',
-       'phpMinAdmin' => 'Andmebaasi haldaja',
+       'Adminer' => 'Andmebaasi haldaja',
        'Logout successful.' => 'Väljalogimine õnnestus.',
        'Invalid credentials.' => 'Ebasobivad andmed.',
        'Server' => 'Server',
index 8a637f334e532689a37bb4670148b1ce24b5a07f..49e4909346849af7a862abd5d75a9252d47832b0 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 $translations = array(
        'Login' => 'Authentification',
-       'phpMinAdmin' => 'phpMinAdmin',
+       'Adminer' => 'Adminer',
        'Logout successful.' => 'Aurevoir!',
        'Invalid credentials.' => 'Authentification échoué',
        'Server' => 'Serveur',
index 1070caa3fc7c9e526516fa9f509cfb2cec73fe82..31a0e548fc96778688ea0a908d4db2c6509404ad 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 $translations = array(
        'Login' => 'Autenticazione',
-       'phpMinAdmin' => 'phpMinAdmin',
+       'Adminer' => 'Adminer',
        'Logout successful.' => 'Uscita effettuata con successo.',
        'Invalid credentials.' => 'Credenziali non valide.',
        'Server' => 'Server',
index 9752b719173132d0ebb857ff9f160f29e255f171..2fe16f6e347a38197a00d02c98f3e4e859b24294 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 $translations = array(
        'Login' => 'Inloggen',
-       'phpMinAdmin' => 'phpMinAdmin',
+       'Adminer' => 'Adminer',
        'Logout successful.' => 'Uitloggen geslaagd.',
        'Invalid credentials.' => 'Ongeldige logingegevens.',
        'Server' => 'Server',
index 17fd9be1c88ebd32c29410091ecff99699898eb9..902ac544df868a4552547a33b50ead3da8996480 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 $translations = array(
        'Login' => 'Записаться',
-       'phpMinAdmin' => 'phpMinAdmin',
+       'Adminer' => 'Adminer',
        'Logout successful.' => 'Логаут в порядке.',
        'Invalid credentials.' => 'Недействительное заявительное факты.',
        'Server' => 'Сервер',
index 4d337116f9e683a4941f7fda5e6d98e50c5af89c..d5cc6c4ee9deeab6962ceedc476dd24a6c22a809 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 $translations = array(
        'Login' => 'Prihlásiť sa',
-       'phpMinAdmin' => 'phpMinAdmin',
+       'Adminer' => 'Adminer',
        'Logout successful.' => 'Odhlásenie prebehlo v poriadku.',
        'Invalid credentials.' => 'Neplatné prihlasovacie údaje.',
        'Server' => 'Server',
index 6409e7e5ae1591177b220ebaada32e53539732fc..3c217ef3f423a8a9936ad9da4d84ad2ec292bc24 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 $translations = array(
        'Login' => '登录',
-       'phpMinAdmin' => 'phpMinAdmin',
+       'Adminer' => 'Adminer',
        'Logout successful.' => '注销成功。',
        'Invalid credentials.' => '无效凭据。',
        'Server' => '服务器',
index 5354cdcbf233ea6c0cdeac3fbc2e56acdcf9ce5f..bf3dfc40e835e85546cdb552bd52cccda87ba279 100644 (file)
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/_coverage.php?start=1</td>
+       <td>/adminer/_coverage.php?start=1</td>
        <td></td>
 </tr>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?lang=en&amp;username=</td>
+       <td>/adminer/?lang=en&amp;username=</td>
        <td></td>
 </tr>
 <tr>
index 523bb3e44fb22661d18fcd080038804fb0024baa..91068c6c7f5c1575e4cac46e24f0180c14a35f96 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/</td>
+       <td>/adminer/</td>
        <td></td>
 </tr>
 <tr>
index e3ace7d51075f15b69a86b426c5c1200b9d93460..953c39422f5ea2a84bebdbda339e36e5d97d5894 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?db=selenium&amp;select=albums</td>
+       <td>/adminer/?db=selenium&amp;select=albums</td>
        <td></td>
 </tr>
 <tr>
index 183fe9f3968f31aeef35f3b6093d72dd5338ff0c..d196aefb9d98a122a9acf8c6efb2ea4e5b34d6a0 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?db=selenium&amp;select=albums</td>
+       <td>/adminer/?db=selenium&amp;select=albums</td>
        <td></td>
 </tr>
 <tr>
index e561be01ac04ea40db00a59d13a56390e47510b5..4c607802789af35bffc79c029885d5b8603ca682 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?db=selenium&amp;edit=albums&amp;where%5Bid%5D=2</td>
+       <td>/adminer/?db=selenium&amp;edit=albums&amp;where%5Bid%5D=2</td>
        <td></td>
 </tr>
 <tr>
index b3b9db40eb3e96bbf0e62d5683623cfa9ba207d7..4c7f9f503309582727e9b6eec225538c33cf01b2 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?db=selenium&amp;edit=albums&amp;where%5Bid%5D=2</td>
+       <td>/adminer/?db=selenium&amp;edit=albums&amp;where%5Bid%5D=2</td>
        <td></td>
 </tr>
 <tr>
index 0e3b1ad2039b547a514417f7ce9cfba16d3115c7..1ee23570414157eed102e8d340ed0a78c8801907 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?db=selenium&amp;select=albums</td>
+       <td>/adminer/?db=selenium&amp;select=albums</td>
        <td></td>
 </tr>
 <tr>
index 75f394b3565e8f08ceef9e2fba9a929b5243525d..ebbd948b5f5a5a3e61cb5a79ab68714370d0ca3c 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?user=</td>
+       <td>/adminer/?user=</td>
        <td></td>
 </tr>
 <tr>
index 3d57b3c7ea34155b59baf4989aca3abe3ac07c79..3af8f801a8e2514bfb77b1daa37eb3e6fda1195d 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?processlist=</td>
+       <td>/adminer/?processlist=</td>
        <td></td>
 </tr>
 <tr>
index 4b2947e0c23bb6ce3ba265ddd9069b94f38c3194..b3aa14d584590e6a89673a15228debf2f4449ab7 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?db=selenium&amp;dump=</td>
+       <td>/adminer/?db=selenium&amp;dump=</td>
        <td></td>
 </tr>
 <tr>
index 7e747d475fa50bce0c0b87c30651e6bb2640aa55..1c501c482a00803d1bfce83bb812837acedef6ac 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?db=selenium&amp;event=</td>
+       <td>/adminer/?db=selenium&amp;event=</td>
        <td></td>
 </tr>
 <tr>
index 45959ba065a4a6c8d051795e0402b28048920ea2..0d09e08724749a51a761bfe143ee21959c52d800 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?db=selenium&amp;procedure=</td>
+       <td>/adminer/?db=selenium&amp;procedure=</td>
        <td></td>
 </tr>
 <tr>
index 2a07030470eb6906dfd3e2648b16faeb7b5740d3..3ced7a2172a29219f4e2fc4a4a91adaa55faea20 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?db=selenium</td>
+       <td>/adminer/?db=selenium</td>
        <td></td>
 </tr>
 <tr>
index ff99dddb12a35a869c64fe381a5b06bf76e08566..37fea341364199f7b2a5ca08216220822c429a9d 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?db=selenium&amp;table=interprets</td>
+       <td>/adminer/?db=selenium&amp;table=interprets</td>
        <td></td>
 </tr>
 <tr>
index 9e37765d20e5cb303ca9d1644ee0592ea720f299..2c22dbbba04909527d3e408fb000e59ffc11f6c1 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?db=selenium&amp;table=interprets</td>
+       <td>/adminer/?db=selenium&amp;table=interprets</td>
        <td></td>
 </tr>
 <tr>
index 155e2a5ca9f05a74f0a36409d55abe1e108f9e9c..628c1e16b563e1926b00b291e479ef01ccaaf0d2 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?db=selenium&amp;table=interprets&amp;lang=en</td>
+       <td>/adminer/?db=selenium&amp;table=interprets&amp;lang=en</td>
        <td></td>
 </tr>
 <tr>
index 0f9d3666cf641605bc1d60b8b97e2bbe070c613e..0c357dbc1a994328a535c0286702df60acce7842 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?db=selenium&amp;table=albums</td>
+       <td>/adminer/?db=selenium&amp;table=albums</td>
        <td></td>
 </tr>
 <tr>
index 28c112a7d0d45fd61879eedfaadcc5895a522fbf..eb8a1f91e027ae9bc0a4c0825550e78cdea116a5 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?db=selenium&amp;table=interprets</td>
+       <td>/adminer/?db=selenium&amp;table=interprets</td>
        <td></td>
 </tr>
 <tr>
index 99b10ab09f4c5f4cfd0bdce14e4b7b7f09325b66..fd7aaa712e38d1f86e7f6a65fc025d64596981d7 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?db=selenium&amp;trigger=albums</td>
+       <td>/adminer/?db=selenium&amp;trigger=albums</td>
        <td></td>
 </tr>
 <tr>
index 752ffcc02dfddbfa4405c6c3201b966aae9ee4b6..f0e24f5b6852bd5c4928f4eae73c7160042b3c7c 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?db=selenium&amp;createv=</td>
+       <td>/adminer/?db=selenium&amp;createv=</td>
        <td></td>
 </tr>
 <tr>
index 6f42a94f60905efff7d0746f0baae40aeb025d2e..48b8c990a7bd469d1be5565961190ad39b670354 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?db=selenium&amp;edit=interprets</td>
+       <td>/adminer/?db=selenium&amp;edit=interprets</td>
        <td></td>
 </tr>
 <tr>
@@ -33,7 +33,7 @@
 </tr>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/?db=selenium&amp;edit=albums</td>
+       <td>/adminer/?db=selenium&amp;edit=albums</td>
        <td></td>
 </tr>
 <tr>
index da34f504812b04349b5fd6962990cde09fcfb8af..45398feb13f73e5e79e0072f67babcf122b68112 100644 (file)
@@ -13,7 +13,7 @@
 </thead><tbody>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/</td>
+       <td>/adminer/</td>
        <td></td>
 </tr>
 <tr>
@@ -38,7 +38,7 @@
 </tr>
 <tr>
        <td>open</td>
-       <td>/phpMinAdmin/_coverage.php</td>
+       <td>/adminer/_coverage.php</td>
        <td></td>
 </tr>