[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_3, updated. RELEASE_3_3_2-28-gef2a411

Marc Delisle lem9 at users.sourceforge.net
Thu Apr 29 18:33:16 CEST 2010


The branch, QA_3_3 has been updated
       via  ef2a411db9b005956705c4c3b577f2848189ec26 (commit)
      from  b76df0d6099704dad6414d4fe4aaccb6694b61a5 (commit)


- Log -----------------------------------------------------------------
commit ef2a411db9b005956705c4c3b577f2848189ec26
Author: Marc Delisle <marc at infomarc.info>
Date:   Thu Apr 29 12:30:59 2010 -0400

    bug #2994168 Show auto_increment in uppercase

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog         |    1 +
 tbl_structure.php |    2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index e5064bc..20e1fed 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -26,6 +26,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
 - bug [tracking] Tracking report should obey MaxCharactersInDisplayedSQL 
 - bug [edit] Avoid selecting UNHEX function by default for a BLOB column for
   which editing is protected
+- bug #2994168 [structure] Show auto_increment in uppercase 
 
 3.3.2.0 (2010-04-13)
 - patch #2969449 [core] Name for MERGE engine varies depending on the
diff --git a/tbl_structure.php b/tbl_structure.php
index 0d966cc..fbe844d 100644
--- a/tbl_structure.php
+++ b/tbl_structure.php
@@ -346,7 +346,7 @@ while ($row = PMA_DBI_fetch_assoc($fields_rs)) {
     else {
         echo '<i>' . $strNoneDefault . '</i>';
     } ?></td>
-    <td nowrap="nowrap"><?php echo $row['Extra']; ?></td>
+    <td nowrap="nowrap"><?php echo strtoupper($row['Extra']); ?></td>
     <td align="center">
         <a href="sql.php?<?php echo $url_query; ?>&sql_query=<?php echo urlencode('SELECT COUNT(*) AS ' . PMA_backquote($strRows) . ', ' . PMA_backquote($row['Field']) . ' FROM ' . PMA_backquote($table) . ' GROUP BY ' . PMA_backquote($row['Field']) . ' ORDER BY ' . PMA_backquote($row['Field'])); ?>">
             <?php echo $titles['BrowseDistinctValues']; ?></a>


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list