Fix merge conflicts

This commit is contained in:
Marc Delisle 2013-07-13 19:30:11 -04:00
parent 8e4fe7c57a
commit 90d968b447
2 changed files with 9 additions and 1 deletions

View File

@ -557,7 +557,11 @@ $cfg['ServerDefault'] = 1;
*
* @global boolean $cfg['VersionCheck']
*/
$cfg['VersionCheck'] = VERSION_CHECK_DEFAULT;
if (defined('VERSION_CHECK_DEFAULT')) {
$cfg['VersionCheck'] = VERSION_CHECK_DEFAULT;
} else {
$cfg['VersionCheck'] = true;
}
/**
* maximum number of db's displayed in database list

View File

@ -3,6 +3,10 @@
* @package Swekey
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Checks Swekey authentication.
*/