Merge remote-tracking branch 'origin/QA_4_5' into QA_4_5
This commit is contained in:
commit
b43c8abfa1
@ -4,6 +4,7 @@ phpMyAdmin - ChangeLog
|
||||
4.5.3.0 (not yet released)
|
||||
- issue #11664 Online syntax verifier bug - "IF" on SELECT statement
|
||||
- issue #11665 Format breaks query with COUNT()
|
||||
- issue Undefinex index: SendErrorReports
|
||||
|
||||
4.5.2.0 (not yet released)
|
||||
- issue #11589 Incorrect parameter in mysqli_fetch_fields()
|
||||
|
||||
@ -296,6 +296,10 @@ class PMA_Error_Handler
|
||||
*/
|
||||
public function getDispErrors()
|
||||
{
|
||||
// Not sure why but seen in reports.phpmyadmin.net
|
||||
if (empty($GLOBALS['cfg']['SendErrorReports'])) {
|
||||
$GLOBALS['cfg']['SendErrorReports'] = 'ask';
|
||||
}
|
||||
$retval = '';
|
||||
// display errors if SendErrorReports is set to 'ask'.
|
||||
if ($GLOBALS['cfg']['SendErrorReports'] != 'never') {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user