Removed unused code parts.
This commit is contained in:
@@ -35,6 +35,7 @@ $Source$
|
|||||||
* import.php, lang/*: Try to detect that upload failed because of limits
|
* import.php, lang/*: Try to detect that upload failed because of limits
|
||||||
(RFE #1240480).
|
(RFE #1240480).
|
||||||
* libraries/storage_engines.lib.php: Use defined messages.
|
* libraries/storage_engines.lib.php: Use defined messages.
|
||||||
|
* libraries/auth/cookie.auth.lib.php: Removed unused code parts.
|
||||||
|
|
||||||
2005-10-07 Marc Delisle <lem9@users.sourceforge.net>
|
2005-10-07 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* libraries/check_user_privileges.lib.php: bug #1313821, dbname containing a
|
* libraries/check_user_privileges.lib.php: bug #1313821, dbname containing a
|
||||||
|
@@ -301,7 +301,7 @@ if (top != self) {
|
|||||||
echo "\n";
|
echo "\n";
|
||||||
// Displays the MySQL servers choice
|
// Displays the MySQL servers choice
|
||||||
foreach ($cfg['Servers'] AS $key => $val) {
|
foreach ($cfg['Servers'] AS $key => $val) {
|
||||||
if (!empty($val['host']) || $val['auth_type'] == 'arbitrary') {
|
if (!empty($val['host'])) {
|
||||||
echo ' <option value="' . $key . '"';
|
echo ' <option value="' . $key . '"';
|
||||||
if (!empty($server) && ($server == $key)) {
|
if (!empty($server) && ($server == $key)) {
|
||||||
echo ' selected="selected"';
|
echo ' selected="selected"';
|
||||||
@@ -309,8 +309,6 @@ if (top != self) {
|
|||||||
echo '>';
|
echo '>';
|
||||||
if ($val['verbose'] != '') {
|
if ($val['verbose'] != '') {
|
||||||
echo $val['verbose'];
|
echo $val['verbose'];
|
||||||
} elseif ($val['auth_type'] == 'arbitrary') {
|
|
||||||
echo $GLOBALS['strArbitrary'];
|
|
||||||
} else {
|
} else {
|
||||||
echo $val['host'];
|
echo $val['host'];
|
||||||
if (!empty($val['port'])) {
|
if (!empty($val['port'])) {
|
||||||
|
Reference in New Issue
Block a user