From 8b29aa347e5bd14842a7f9fcfd4c9482da9e52d4 Mon Sep 17 00:00:00 2001 From: Marco Villegas Date: Fri, 15 Nov 2013 14:22:15 -0500 Subject: [PATCH] TransactionLogController::importPendingEnvelopes should not be static. --- src/ChamiloLMS/Transaction/TransactionLogController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ChamiloLMS/Transaction/TransactionLogController.php b/src/ChamiloLMS/Transaction/TransactionLogController.php index 345b6c4168..95154570bc 100644 --- a/src/ChamiloLMS/Transaction/TransactionLogController.php +++ b/src/ChamiloLMS/Transaction/TransactionLogController.php @@ -172,7 +172,7 @@ class TransactionLogController * An array keyed by received envelope id containing an array transaction * ids added based on that received envelope. */ - public static function importPendingEnvelopes($limit = 0) { + public function importPendingEnvelopes($limit = 0) { $table = Database::get_main_table(TABLE_RECEIVED_ENVELOPES); $log_entry = array('log_type' => self::LOG_IMPORT_TO_TX_QUEUE); // Sadly limit clause is not supported by Database::select().