fixed a js error with NS
This commit is contained in:
@@ -33,6 +33,7 @@ $Source$
|
|||||||
* lib.inc.php3, lines 1154-1170: added an option to display the whole value
|
* lib.inc.php3, lines 1154-1170: added an option to display the whole value
|
||||||
of a text field in a javascript alert box thanks to "Opi" <opi@volny.cz>.
|
of a text field in a javascript alert box thanks to "Opi" <opi@volny.cz>.
|
||||||
* lang/english.inc.php3: re-sorted and fixed some typos.
|
* lang/english.inc.php3: re-sorted and fixed some typos.
|
||||||
|
* left.php3: fixed a js error with NS.
|
||||||
|
|
||||||
2001-08-28 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
2001-08-28 Lo<4C>c Chapeaux <lolo@phpheaven.net>
|
||||||
* lang/galician.inc.php3, select_lang.inc.php3: new Galician lang thanks to
|
* lang/galician.inc.php3, select_lang.inc.php3: new Galician lang thanks to
|
||||||
|
13
left.php3
13
left.php3
@@ -22,9 +22,8 @@ if ($server > 0) {
|
|||||||
$num_dbs = count($dblist);
|
$num_dbs = count($dblist);
|
||||||
// 1. $cfgServers[n]['only_db'] exists -> gets the valid databases list
|
// 1. $cfgServers[n]['only_db'] exists -> gets the valid databases list
|
||||||
if ($num_dbs) {
|
if ($num_dbs) {
|
||||||
$true_dblist = array();
|
$true_dblist = array();
|
||||||
for ($i = 0; $i < $num_dbs; $i++) {
|
for ($i = 0; $i < $num_dbs; $i++) {
|
||||||
// $dblink = @mysql_select_db(backquote($dblist[$i]));
|
|
||||||
$dblink = @mysql_select_db($dblist[$i]);
|
$dblink = @mysql_select_db($dblist[$i]);
|
||||||
if ($dblink) {
|
if ($dblink) {
|
||||||
$true_dblist[] = $dblist[$i];
|
$true_dblist[] = $dblist[$i];
|
||||||
@@ -37,12 +36,12 @@ if ($server > 0) {
|
|||||||
} // end if
|
} // end if
|
||||||
// 2. no $cfgServers[n]['only_db']
|
// 2. no $cfgServers[n]['only_db']
|
||||||
else {
|
else {
|
||||||
$dbs = mysql_list_dbs() or mysql_die('', 'mysql_list_dbs()', FALSE, FALSE);
|
$dbs = mysql_list_dbs() or mysql_die('', 'mysql_list_dbs()', FALSE, FALSE);
|
||||||
$num_dbs = @mysql_num_rows($dbs);
|
$num_dbs = @mysql_num_rows($dbs);
|
||||||
$real_num_dbs = 0;
|
$real_num_dbs = 0;
|
||||||
for ($i = 0; $i < $num_dbs; $i++) {
|
for ($i = 0; $i < $num_dbs; $i++) {
|
||||||
$db_name_tmp = mysql_dbname($dbs, $i);
|
$db_name_tmp = mysql_dbname($dbs, $i);
|
||||||
$dblink = @mysql_select_db($db_name_tmp);
|
$dblink = @mysql_select_db($db_name_tmp);
|
||||||
if ($dblink) {
|
if ($dblink) {
|
||||||
$dblist[] = $db_name_tmp;
|
$dblist[] = $db_name_tmp;
|
||||||
$real_num_dbs++;
|
$real_num_dbs++;
|
||||||
@@ -207,7 +206,7 @@ if ($num_dbs > 1) {
|
|||||||
if (!empty($num_tables)) {
|
if (!empty($num_tables)) {
|
||||||
echo "\n";
|
echo "\n";
|
||||||
?>
|
?>
|
||||||
<a class="item" href="db_details.php3?<?php echo $common_url_query; ?>" onclick="if (typeof(expandBase) != 'undefined') {expandBase('el<?php echo $j; ?>', true); return false;}">
|
<a class="item" href="db_details.php3?<?php echo $common_url_query; ?>" onclick="if (capable) {expandBase('el<?php echo $j; ?>', true); return false;}">
|
||||||
<img name="imEx" id="el<?php echo $j; ?>Img" src="images/plus.gif" border="0" width="9" height="9" alt="+" /></a>
|
<img name="imEx" id="el<?php echo $j; ?>Img" src="images/plus.gif" border="0" width="9" height="9" alt="+" /></a>
|
||||||
<?php
|
<?php
|
||||||
} else {
|
} else {
|
||||||
@@ -218,7 +217,7 @@ if ($num_dbs > 1) {
|
|||||||
}
|
}
|
||||||
echo "\n";
|
echo "\n";
|
||||||
?>
|
?>
|
||||||
<a class="item" href="db_details.php3?<?php echo $common_url_query; ?>" onclick="if (typeof(expandBase) != 'undefined') {expandBase('el<?php echo $j; ?>', false)}">
|
<a class="item" href="db_details.php3?<?php echo $common_url_query; ?>" onclick="if (capable) {expandBase('el<?php echo $j; ?>', false)}">
|
||||||
<font color="black" class="heada"><?php echo $db; ?> <span class="heada_cnt">(<?php echo $num_tables_disp; ?>)</span></font></a>
|
<font color="black" class="heada"><?php echo $db; ?> <span class="heada_cnt">(<?php echo $num_tables_disp; ?>)</span></font></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user