Replaced a "require" by an include
This commit is contained in:
21
ChangeLog
21
ChangeLog
@@ -5,18 +5,21 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2002-04-28 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
||||
* tbl_properties.php3, line 395: replaced a "require" by an include.
|
||||
|
||||
2002-04-27 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* tbl_properties.php3, new tbl_properties_links.php3:
|
||||
remove duplicate links code
|
||||
* tbl_properties.php3, new tbl_properties_links.php3:
|
||||
remove duplicate links code.
|
||||
|
||||
2002-04-27 Alexander M. Turek <rabus@users.sourceforge.net>
|
||||
* Recompressed old ChangeLog without saving its path in the archive.
|
||||
* header.inc.php3:
|
||||
- Patch #548696 (DB/Table titles should be links), thanks to
|
||||
Ray Black <allah03@users.sourceforge.net>.
|
||||
- lines: 161-164: Undefined variable
|
||||
* common.lib.php3, lines 162, 163, 435-437: Fixed bug #549570
|
||||
(Strange error if controluser is invalid)
|
||||
* Recompressed old ChangeLog without saving its path in the archive.
|
||||
* header.inc.php3:
|
||||
- Patch #548696 (DB/Table titles should be links), thanks to
|
||||
Ray Black <allah03@users.sourceforge.net>.
|
||||
- lines: 161-164: Undefined variable.
|
||||
* common.lib.php3, lines 162, 163, 435-437: Fixed bug #549570
|
||||
(Strange error if controluser is invalid).
|
||||
|
||||
2002-04-27 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
||||
* Documentation.html:
|
||||
|
@@ -145,10 +145,7 @@ if (PMA_MYSQL_INT_VERSION >= 32303) {
|
||||
}
|
||||
mysql_free_result($result);
|
||||
|
||||
echo "\n";
|
||||
?>
|
||||
<!-- first browse links -->
|
||||
<?php
|
||||
echo '<!-- first browse links -->' . "\n";
|
||||
require('./tbl_properties_links.php3');
|
||||
|
||||
if (!empty($show_comment)) {
|
||||
@@ -391,10 +388,11 @@ echo "\n";
|
||||
* links again
|
||||
*/
|
||||
if ($fields_cnt > 20) {
|
||||
?>
|
||||
?>
|
||||
<!-- Browse links -->
|
||||
<?php
|
||||
require('./tbl_properties_links.php3');
|
||||
<?php
|
||||
echo "\n";
|
||||
include('./tbl_properties_links.php3');
|
||||
} // end if ($fields_cnt > 20)
|
||||
echo "\n\n";
|
||||
|
||||
|
Reference in New Issue
Block a user