diff --git a/libraries/tbl_common.php b/libraries/tbl_common.php index d8b901941..0ef16c22b 100644 --- a/libraries/tbl_common.php +++ b/libraries/tbl_common.php @@ -3,6 +3,7 @@ /** * * @version $Id$ + * @package phpMyAdmin */ if (! defined('PHPMYADMIN')) { exit; diff --git a/libraries/tbl_properties.inc.php b/libraries/tbl_properties.inc.php index 746732005..ff8ad78b8 100644 --- a/libraries/tbl_properties.inc.php +++ b/libraries/tbl_properties.inc.php @@ -5,6 +5,7 @@ * * included by tbl_addfield.php, -_alter.php, -_create.php * @version $Id$ + * @package phpMyAdmin */ if (! defined('PHPMYADMIN')) { exit; @@ -95,8 +96,8 @@ $content_cells = array(); $header_cells[] = $strField; $header_cells[] = $strType - . ($GLOBALS['cfg']['ReplaceHelpImg'] - ? PMA_showMySQLDocu('SQL-Syntax', 'data-types') + . ($GLOBALS['cfg']['ReplaceHelpImg'] + ? PMA_showMySQLDocu('SQL-Syntax', 'data-types') : '
' . PMA_showMySQLDocu('SQL-Syntax', 'data-types') . ''); $header_cells[] = $strLengthSet . PMA_showHint($strSetEnumVal); @@ -139,7 +140,7 @@ if ($cfgRelation['mimework'] && $cfg['BrowseMIME']) { $header_cells[] = $strMIME_MIMEtype; $header_cells[] = $strMIME_transformation; - $header_cells[] = $strMIME_transformation_options + $header_cells[] = $strMIME_transformation_options . PMA_showHint($strMIME_transformation_options_note . $hint); } @@ -189,7 +190,7 @@ for ($i = 0; $i < $num_fields; $i++) { $row['Default'] = $row['DefaultType']; break; } - + $row['Extra'] = (isset($_REQUEST['field_extra'][$i]) ? $_REQUEST['field_extra'][$i] : false); $row['Comment'] = (isset($submit_fulltext[$i]) && ($submit_fulltext[$i] == $i) ? 'FULLTEXT' : false); @@ -267,7 +268,7 @@ for ($i = 0; $i < $num_fields; $i++) { . ' value="' . (isset($row['Field']) ? htmlspecialchars($row['Field']) : '') . '"' . ' />'; $ci++; - + // column type $content_cells[$i][$ci] = ' @@ -745,7 +746,7 @@ if ($action == 'tbl_create.php') { ?>
- diff --git a/libraries/tbl_replace_fields.inc.php b/libraries/tbl_replace_fields.inc.php index 64a9d1b34..6ebea9cb8 100644 --- a/libraries/tbl_replace_fields.inc.php +++ b/libraries/tbl_replace_fields.inc.php @@ -28,6 +28,7 @@ * @uses implode() * @uses PMA_NO_VARIABLES_IMPORT * @uses PMA_sqlAddslashes() + * @package phpMyAdmin */ if (! defined('PHPMYADMIN')) { exit;