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:
authorChristian Foellmann <foellmann@foe-services.de>2014-07-28 14:13:10 +0400
committerChristian Foellmann <foellmann@foe-services.de>2014-07-28 14:13:10 +0400
commit276394119dfbe117acd411a3862de597ba35a2ad (patch)
tree3dc394a15f459d6324e3452e15e9446e47fe3bd0 /libraries/Index.class.php
parentc8c2e72886de1b71f5abcaa295075da9666096b5 (diff)
UPDATE phpmyadmin 4.2.6 multilanguage
Diffstat (limited to 'libraries/Index.class.php')
-rw-r--r--libraries/Index.class.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/libraries/Index.class.php b/libraries/Index.class.php
index e6e975557c..cc94b39cf4 100644
--- a/libraries/Index.class.php
+++ b/libraries/Index.class.php
@@ -404,7 +404,7 @@ class PMA_Index
. (($this->_choice == $each_index_choice)
? ' selected="selected"'
: '')
- . '>'. $each_index_choice . '</option>' . "\n";
+ . '>' . $each_index_choice . '</option>' . "\n";
}
return $html_options;
@@ -508,7 +508,7 @@ class PMA_Index
/**
* Returns the columns of the index
*
- * @return array the columns of the index
+ * @return PMA_Index_Column[] the columns of the index
*/
public function getColumns()
{
@@ -598,7 +598,7 @@ class PMA_Index
. PMA_Util::backquote($table)
. ' DROP PRIMARY KEY;';
$this_params['message_to_show']
- = __('The primary key has been dropped');
+ = __('The primary key has been dropped.');
$js_msg = PMA_jsFormat(
'ALTER TABLE ' . $table . ' DROP PRIMARY KEY'
);
@@ -727,7 +727,8 @@ class PMA_Index
while ($while_index = array_pop($indexes)) {
// ... compare with every remaining index in stack
foreach ($indexes as $each_index) {
- if ($each_index->getCompareData() !== $while_index->getCompareData()) {
+ if ($each_index->getCompareData() !== $while_index->getCompareData()
+ ) {
continue;
}