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:49:05 +0400
committerMarc Delisle <marc@infomarc.info>2011-05-09 20:49:05 +0400
commit13b31956aed38141836faf386d97c042a3087f48 (patch)
treee1cecbcf715c1dbe18cffab0eebd4dfe7257245a /schema_edit.php
parent555c04b4a1bb91780aa21bff2b420eb6171a995d (diff)
For easier reading, replace "!isset" with "! isset"
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 a5d3a38ce1..149709f9f4 100644
--- a/schema_edit.php
+++ b/schema_edit.php
@@ -53,12 +53,12 @@ if (!$cfgRelation['displaywork']) {
require_once './libraries/footer.inc.php';
}
-if (!isset($cfgRelation['table_coords'])){
+if (! isset($cfgRelation['table_coords'])){
echo sprintf(__('<b>%s</b> table not found or not set in %s'), 'table_coords', 'config.inc.php') . '<br />' . "\n"
. PMA_showDocu('table_coords') . "\n";
require_once './libraries/footer.inc.php';
}
-if (!isset($cfgRelation['pdf_pages'])) {
+if (! isset($cfgRelation['pdf_pages'])) {
echo sprintf(__('<b>%s</b> table not found or not set in %s'), 'pdf_page', 'config.inc.php') . '<br />' . "\n"
. PMA_showDocu('pdf_pages') . "\n";
require_once './libraries/footer.inc.php';