names and ids for framesets in the noscript section

This commit is contained in:
Marc Delisle
2004-08-05 10:39:46 +00:00
parent d73ba8b7fd
commit 57035bec43
2 changed files with 6 additions and 2 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2004-08-05 Marc Delisle <lem9@users.sourceforge.net>
(Patches from Michael Keck)
* index.php: names and ids for framesets in the noscript section
2004-08-03 Marc Delisle <lem9@users.sourceforge.net> 2004-08-03 Marc Delisle <lem9@users.sourceforge.net>
(Patches from Michael Keck) (Patches from Michael Keck)
* libraries/display_tbl.lib.php: bug 993694, clicking on last record * libraries/display_tbl.lib.php: bug 993694, clicking on last record

View File

@@ -117,8 +117,8 @@ if ($cfg['QueryFrame']) {
echo '<noscript>' . "\n"; echo '<noscript>' . "\n";
} }
echo '<frameset cols="' . $cfg['LeftWidth'] . ',*" rows="*" border="1" frameborder="1" framespacing="0">' . "\n"; echo '<frameset cols="' . $cfg['LeftWidth'] . ',*" rows="*" border="1" frameborder="1" framespacing="0" name="mainFrameset" id="mainFrameset">' . "\n";
echo ' <frameset rows="' . $query_frame_height . ', *" framespacing="0" frameborder="0" border="0">' . "\n"; echo ' <frameset rows="' . $query_frame_height . ', *" framespacing="0" frameborder="0" border="0" name="leftFrameset" id="leftFrameset">' . "\n";
echo ' <frame src="queryframe.php?' . $url_query . '&amp;hash=' . $phpmain_hash . '" name="queryframe" frameborder="0" scrolling="no" />' . "\n"; echo ' <frame src="queryframe.php?' . $url_query . '&amp;hash=' . $phpmain_hash . '" name="queryframe" frameborder="0" scrolling="no" />' . "\n";
echo ' <frame src="left.php?' . $url_query . '&amp;hash=' . $phpmain_hash . '" name="nav" frameborder="0" />' . "\n"; echo ' <frame src="left.php?' . $url_query . '&amp;hash=' . $phpmain_hash . '" name="nav" frameborder="0" />' . "\n";
echo ' </frameset>' . "\n"; echo ' </frameset>' . "\n";