Crypt/Base: add a function to check continuous buffer status

This commit is contained in:
terrafrost 2022-12-07 08:32:44 -06:00
parent 68c3eef88f
commit 16df002325

View File

@ -2744,4 +2744,15 @@ class Crypt_Base
function do_nothing()
{
}
/**
* Is the continuous buffer enabled?
*
* @access public
* @return boolean
*/
function continuousBufferEnabled()
{
return $this->continuousBuffer;
}
}