Use include() instead of require()
This commit is contained in:
@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2002-07-16 Alexander M. Turek <rabus@users.sourceforge.net>
|
||||
* header.inc.php3: Use include() instead of require().
|
||||
|
||||
2002-07-16 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* libraries: charset_conversion.lib.php3, common.lib.php3: bug 581577:
|
||||
a better if, because sometimes the test for PHP3 succeeds even
|
||||
|
@@ -6,10 +6,10 @@
|
||||
* Gets a core script and starts output buffering work
|
||||
*/
|
||||
if (!defined('PMA_COMMON_LIB_INCLUDED')) {
|
||||
require('./libraries/common.lib.php3');
|
||||
include('./libraries/common.lib.php3');
|
||||
}
|
||||
if (!defined('PMA_OB_LIB_INCLUDED')) {
|
||||
require('./libraries/ob.lib.php3');
|
||||
include('./libraries/ob.lib.php3');
|
||||
}
|
||||
if ($GLOBALS['cfg']['OBGzip']) {
|
||||
$GLOBALS['ob_mode'] = PMA_outBufferModeGet();
|
||||
|
Reference in New Issue
Block a user