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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2012-04-22 19:58:41 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-04-22 19:58:41 +0400
commit4b8d52d937d396301c17472874cb645e92258df3 (patch)
treefcde2fe963c87d5e8059029212583cac220f41d1 /schema_edit.php
parent67134da3d01ff2f2469d79223d0d22a4515d3227 (diff)
Fix CheckStyle warnings, Type:CloseBracketNewLine (Closing parenthesis of a multi-line IF statement must be on a new line)
Diffstat (limited to 'schema_edit.php')
-rw-r--r--schema_edit.php25
1 files changed, 13 insertions, 12 deletions
diff --git a/schema_edit.php b/schema_edit.php
index fe1349285d..6fcfacb784 100644
--- a/schema_edit.php
+++ b/schema_edit.php
@@ -59,10 +59,10 @@ if (! isset($cfgRelation['pdf_pages'])) {
if ($cfgRelation['pdfwork']) {
- /**
- * User object created for presenting the HTML options
- * so, user can interact with it and perform export of relations schema
- */
+ /**
+ * User object created for presenting the HTML options
+ * so, user can interact with it and perform export of relations schema
+ */
include_once 'libraries/schema/User_Schema.class.php';
$user_schema = new PMA_User_Schema();
@@ -103,14 +103,15 @@ if ($cfgRelation['pdfwork']) {
$user_schema->showTableDashBoard();
if (isset($_REQUEST['do'])
- && ($_REQUEST['do'] == 'edcoord'
- || ($_REQUEST['do']== 'selectpage' && isset($user_schema->chosenPage) && $user_schema->chosenPage != 0)
- || ($_REQUEST['do'] == 'createpage' && isset($user_schema->chosenPage) && $user_schema->chosenPage != 0))) {
+ && ($_REQUEST['do'] == 'edcoord'
+ || ($_REQUEST['do']== 'selectpage' && isset($user_schema->chosenPage) && $user_schema->chosenPage != 0)
+ || ($_REQUEST['do'] == 'createpage' && isset($user_schema->chosenPage) && $user_schema->chosenPage != 0))
+ ) {
- /**
- * show Export schema generation options
- */
- $user_schema->displaySchemaGenerationOptions();
+ /**
+ * show Export schema generation options
+ */
+ $user_schema->displaySchemaGenerationOptions();
if ((isset($showwysiwyg) && $showwysiwyg == '1')) {
?>
@@ -120,7 +121,7 @@ if ($cfgRelation['pdfwork']) {
//]]>
</script>
<?php
- }
+ }
} // end if
} // end if ($cfgRelation['pdfwork'])