Removing Model::$transaction as it did nothing. The property was added but never completed. Leaving the model property looking like it does something when in fact it does absolutely nothing. Refs #531

This commit is contained in:
Mark Story 2010-04-02 13:53:53 -04:00
parent d058234c1c
commit 44b216cec3

View file

@ -178,14 +178,6 @@ class Model extends Overloadable {
*/
var $logTransactions = false;
/**
* Whether or not to enable transactions for this model (i.e. BEGIN/COMMIT/ROLLBACK statements)
*
* @var boolean
* @access public
*/
var $transactional = false;
/**
* Whether or not to cache queries for this model. This enables in-memory
* caching only, the results are not stored beyond the current request.