fixed bug: undefined index server ($GLOBALS['server'])
This commit is contained in:
@@ -12,6 +12,8 @@ $Source$
|
|||||||
libraries\transformations.lib.php,
|
libraries\transformations.lib.php,
|
||||||
libraries\transformations\text_plain__external.inc.php:
|
libraries\transformations\text_plain__external.inc.php:
|
||||||
fixed bug #1409972 PHP 5.1.2 compatibility
|
fixed bug #1409972 PHP 5.1.2 compatibility
|
||||||
|
* libraries\url_generating.lib.php:
|
||||||
|
fixed bug: undefined index server ($GLOBALS['server'])
|
||||||
|
|
||||||
2006-01-18 Michal Čihař <michal@cihar.com>
|
2006-01-18 Michal Čihař <michal@cihar.com>
|
||||||
* Documentation.html: Add info about Apache CGI and http auth (patch
|
* Documentation.html: Add info about Apache CGI and http auth (patch
|
||||||
|
@@ -169,8 +169,8 @@ function PMA_generate_common_url ($db = '', $table = '', $delim = '&')
|
|||||||
$delim = $separator;
|
$delim = $separator;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( $GLOBALS['server'] != $GLOBALS['cfg']['ServerDefault']
|
if (isset($GLOBALS['server'])
|
||||||
&& ! empty( $GLOBALS['server'] ) ) {
|
&& $GLOBALS['server'] != $GLOBALS['cfg']['ServerDefault']) {
|
||||||
$params['server'] = $GLOBALS['server'];
|
$params['server'] = $GLOBALS['server'];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user