Reenabled %f substitution.
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2004-10-04 Michal Čihař <michal@cihar.com>
|
||||||
|
* tbl_query_box.php: Reenabled %f substitution.
|
||||||
|
|
||||||
2004-10-02 Marc Delisle <lem9@users.sourceforge.net>
|
2004-10-02 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* tbl_alter.php: field structure changes not applied (CVS version only)
|
* tbl_alter.php: field structure changes not applied (CVS version only)
|
||||||
* export.php: bug #1038804, insufficient space to save
|
* export.php: bug #1038804, insufficient space to save
|
||||||
|
@@ -158,7 +158,11 @@ if (!isset($is_inside_querywindow) ||
|
|||||||
if (!empty($query_to_display)) {
|
if (!empty($query_to_display)) {
|
||||||
echo htmlspecialchars($query_to_display);
|
echo htmlspecialchars($query_to_display);
|
||||||
} elseif (isset($table)) {
|
} elseif (isset($table)) {
|
||||||
echo htmlspecialchars(str_replace('%d', PMA_backquote($db), str_replace('%t', PMA_backquote($table), $cfg['DefaultQueryTable'])));
|
echo htmlspecialchars(
|
||||||
|
str_replace('%d', PMA_backquote($db),
|
||||||
|
str_replace('%t', PMA_backquote($table),
|
||||||
|
str_replace('%f', implode(', ', PMA_backquote($fields_list)),
|
||||||
|
$cfg['DefaultQueryTable']))));
|
||||||
} else {
|
} else {
|
||||||
echo htmlspecialchars(str_replace('%d', PMA_backquote($db), $cfg['DefaultQueryDatabase']));
|
echo htmlspecialchars(str_replace('%d', PMA_backquote($db), $cfg['DefaultQueryDatabase']));
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user