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:
authorDieter Adriaenssens <ruleant@users.sourceforge.net>2012-08-31 16:51:04 +0400
committerDieter Adriaenssens <ruleant@users.sourceforge.net>2012-08-31 16:51:04 +0400
commitf1a90f78b16a71c1026dacb18d57587b9dc5d41c (patch)
treead44324efad6e1064f8412577ea7ffceeb9ff11f /tbl_indexes.php
parentf344774a3751ae84ecd7944099471b9812f62db8 (diff)
coding style : fix indenting
Diffstat (limited to 'tbl_indexes.php')
-rw-r--r--tbl_indexes.php12
1 files changed, 10 insertions, 2 deletions
diff --git a/tbl_indexes.php b/tbl_indexes.php
index 32bb7a5a1d..4762992c07 100644
--- a/tbl_indexes.php
+++ b/tbl_indexes.php
@@ -207,8 +207,16 @@ if ($GLOBALS['is_ajax_request'] != true) {
<strong>
<label for="input_index_name">
<?php echo __('Index name:'); ?>
- <?php echo PMA_CommonFunctions::getInstance()->showHint(PMA_Message::notice(__(
- '("PRIMARY" <b>must</b> be the name of and <b>only of</b> a primary key!)'))); ?>
+ <?php
+echo PMA_CommonFunctions::getInstance()->showHint(
+ PMA_Message::notice(
+ __(
+ '("PRIMARY" <b>must</b> be the name of'
+ . ' and <b>only of</b> a primary key!)'
+ )
+ )
+);
+ ?>
</label>
</strong>
</div>