Remove references to sourceforge.net issue trackers

We do not use it for years and all issues have been migrated.

Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
Michal Čihař 2018-01-02 13:24:05 +01:00
parent 032e551bcb
commit 1ebf6c4953
6 changed files with 7 additions and 8 deletions

View File

@ -1038,8 +1038,8 @@ class Descriptions
return __('Hide databases matching regular expression (PCRE).');
case 'Servers_DisableIS_desc':
return __(
'More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA '
. 'bug tracker[/a] and [a@https://bugs.mysql.com/19588]MySQL Bugs[/a]'
'More information on [a@https://github.com/phpmyadmin/phpmyadmin/issues/8970]phpMyAdmin '
. 'issue tracker[/a] and [a@https://bugs.mysql.com/19588]MySQL Bugs[/a]'
);
case 'Servers_DisableIS_name':
return __('Disable use of INFORMATION_SCHEMA');

View File

@ -769,8 +769,7 @@ class DatabaseInterface
// MySQL returns
// with SHOW DATABASES or information_schema.SCHEMATA: `Test`
// but information_schema.TABLES gives `test`
// bug #2036
// https://sourceforge.net/p/phpmyadmin/bugs/2036/
// see https://github.com/phpmyadmin/phpmyadmin/issues/8402
return $tables[mb_strtolower($database)];
}

View File

@ -456,7 +456,7 @@ class DbiMysqli implements DbiExtension
// MySQL returns MYSQLI_TYPE_STRING for CHAR
// and MYSQLI_TYPE_CHAR === MYSQLI_TYPE_TINY
// so this would override TINYINT and mark all TINYINT as string
// https://sourceforge.net/p/phpmyadmin/bugs/2205/
// see https://github.com/phpmyadmin/phpmyadmin/issues/8569
//$typeAr[MYSQLI_TYPE_CHAR] = 'string';
$typeAr[MYSQLI_TYPE_GEOMETRY] = 'geometry';
$typeAr[MYSQLI_TYPE_BIT] = 'bit';

View File

@ -3923,7 +3923,7 @@ class Privileges
if (! $GLOBALS['dbi']->tryQuery($sql_query0)) {
// This might fail when the executing user does not have
// ALL PRIVILEGES himself.
// See https://sourceforge.net/p/phpmyadmin/bugs/3270/
// See https://github.com/phpmyadmin/phpmyadmin/issues/9673
$sql_query0 = '';
}
if (! empty($sql_query1) && ! $GLOBALS['dbi']->tryQuery($sql_query1)) {

View File

@ -1546,7 +1546,7 @@ class Util
$ret = strftime($date, $timestamp);
// Some OSes such as Win8.1 Traditional Chinese version did not produce UTF-8
// output here. See https://sourceforge.net/p/phpmyadmin/bugs/4207/
// output here. See https://github.com/phpmyadmin/phpmyadmin/issues/10598
if (mb_detect_encoding($ret, 'UTF-8', true) != 'UTF-8') {
$ret = date('Y-m-d H:i:s', $timestamp);
}

View File

@ -554,7 +554,7 @@ $cfg['Servers'][$i]['AllowDeny']['rules'] = array();
/**
* Disable use of INFORMATION_SCHEMA.
*
* @see https://sourceforge.net/p/phpmyadmin/bugs/2606/
* @see https://github.com/phpmyadmin/phpmyadmin/issues/8970
* @see https://bugs.mysql.com/19588
* @global boolean $cfg['Servers'][$i]['DisableIS']
*/