From 44b216cec38fd37a70275a16d1b40e3ec356eacb Mon Sep 17 00:00:00 2001 From: Mark Story Date: Fri, 2 Apr 2010 13:53:53 -0400 Subject: [PATCH] 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 --- cake/libs/model/model.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/cake/libs/model/model.php b/cake/libs/model/model.php index 579b2148971..b5f36d9da02 100644 --- a/cake/libs/model/model.php +++ b/cake/libs/model/model.php @@ -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.