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:
authorMarc Delisle <marc@infomarc.info>2011-05-09 20:57:28 +0400
committerMarc Delisle <marc@infomarc.info>2011-05-09 20:57:28 +0400
commite6211f0c2fb025007125456299165d572894983f (patch)
tree296f8657e44c573baa04c0689adcb67d34595c2b /schema_edit.php
parent13b31956aed38141836faf386d97c042a3087f48 (diff)
Other replacements for easier reading
Diffstat (limited to 'schema_edit.php')
-rw-r--r--schema_edit.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/schema_edit.php b/schema_edit.php
index 149709f9f4..9b71500b92 100644
--- a/schema_edit.php
+++ b/schema_edit.php
@@ -41,13 +41,13 @@ $query_default_option = PMA_DBI_QUERY_STORE;
* correctly, so it is a good place to see which tables we can and
* complain ;-)
*/
-if (!$cfgRelation['relwork']) {
+if (! $cfgRelation['relwork']) {
echo sprintf(__('<b>%s</b> table not found or not set in %s'), 'relation', 'config.inc.php') . '<br />' . "\n"
. PMA_showDocu('relation') . "\n";
require_once './libraries/footer.inc.php';
}
-if (!$cfgRelation['displaywork']) {
+if (! $cfgRelation['displaywork']) {
echo sprintf(__('<b>%s</b> table not found or not set in %s'), 'table_info', 'config.inc.php') . '<br />' . "\n"
. PMA_showDocu('table_info') . "\n";
require_once './libraries/footer.inc.php';