hide edit/delete links for information_schema (bug #1373201)
This commit is contained in:
@@ -8,6 +8,7 @@ $Source$
|
|||||||
2005-12-05 Sebastian Mendel <cybot_tm@users.sourceforge.net>
|
2005-12-05 Sebastian Mendel <cybot_tm@users.sourceforge.net>
|
||||||
* libraries/common.lib.php: added PMA_array_merge_recursive()
|
* libraries/common.lib.php: added PMA_array_merge_recursive()
|
||||||
* libraries/Config.class.php: make use of PMA_array_merge_recursive()
|
* libraries/Config.class.php: make use of PMA_array_merge_recursive()
|
||||||
|
* sql.php: hide edit/delete links for information_schema (bug #1373201)
|
||||||
|
|
||||||
2005-12-05 Michal Čihař <michal@cihar.com>
|
2005-12-05 Michal Čihař <michal@cihar.com>
|
||||||
* many files: Use same script tag, use CDATA for scripts (RFE #995065).
|
* many files: Use same script tag, use CDATA for scripts (RFE #995065).
|
||||||
|
5
sql.php
5
sql.php
@@ -740,6 +740,11 @@ else {
|
|||||||
$dontlimitchars = 0;
|
$dontlimitchars = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// hide edit and delete links for information_schema
|
||||||
|
if ( PMA_MYSQL_INT_VERSION >= 50002 && $db == 'information_schema' ) {
|
||||||
|
$disp_mode = 'nnnn110111';
|
||||||
|
}
|
||||||
|
|
||||||
PMA_displayTable($result, $disp_mode, $analyzed_sql);
|
PMA_displayTable($result, $disp_mode, $analyzed_sql);
|
||||||
PMA_DBI_free_result($result);
|
PMA_DBI_free_result($result);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user