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>2011-07-22 11:18:02 +0400
committerMichal Čihař <mcihar@suse.cz>2011-07-22 11:18:02 +0400
commit25bda8e991f2820971c343315cd3ab3d974b2684 (patch)
tree6f68b4133c45eca085ee9a677ab196b037e22cd2 /schema_edit.php
parent219ec73d69a0bee94ac3bf98757db25360862b39 (diff)
Fix spacing on opening code block
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 1545d8f9be..4ab41d4539 100644
--- a/schema_edit.php
+++ b/schema_edit.php
@@ -53,7 +53,7 @@ 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';
@@ -83,7 +83,7 @@ if ($cfgRelation['pdfwork']) {
* @param string $do It tells what the Schema is supposed to do
* create and select a page, generate schema etc
*/
- if (isset($_REQUEST['do'])){
+ if (isset($_REQUEST['do'])) {
$user_schema->setAction($_REQUEST['do']);
$user_schema->processUserChoice();
}