Use cache to skip blobstreaming check if server does not support it

This commit is contained in:
Michal Čihař 2011-06-27 14:34:06 +02:00
parent 29e778d8e2
commit 78ee628312

View File

@ -47,6 +47,10 @@ function initPBMSDatabase()
*/
function checkBLOBStreamingPlugins()
{
if (PMA_cacheGet('skip_blobstreaming', true) === true) {
return false;
}
// load PMA configuration
$PMA_Config = $GLOBALS['PMA_Config'];