1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php /* $Id: setup.php,v 2.3 2003/11/26 22:52:25 rabus Exp $ */ // vim: expandtab sw=4 ts=4 sts=4:
if (isset($GLOBALS['cfg']['DBG']['enable']) && $GLOBALS['cfg']['DBG']['enable']) { /** * Loads the DBG extension if needed */ if (!@extension_loaded('dbg')) { PMA_dl('dbg'); } if (!@extension_loaded('dbg')) { echo sprintf($strCantLoad, 'DBG') . '<br />' . "\n" . '<a href="./Documentation.html#faqdbg" target="documentation">' . $GLOBALS['strDocu'] . '</a>' . "\n"; require_once('./footer.inc.php'); } $GLOBALS['DBG'] = true; }
?>
|