From fc203e28d61f8aa4562d9bc70c5f5da66ffe1053 Mon Sep 17 00:00:00 2001 From: Frederic Massart Date: Fri, 25 Oct 2013 16:00:24 +0800 Subject: [PATCH] MDL-42542 portfolio: Fix handlerfile in portfolio event handler --- lib/db/events.php | 3 ++- version.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/db/events.php b/lib/db/events.php index 99e5f32f20e..d3ef19fa555 100644 --- a/lib/db/events.php +++ b/lib/db/events.php @@ -42,9 +42,10 @@ $handlers = array( * (it is just abusing cron to do very time consuming things which is wrong any way) * * TODO: this has to be moved into separate queueing framework.... + * TODO: MDL-25508, MDL-41541 */ 'portfolio_send' => array ( - 'handlerfile' => '/lib/portfolio.php', + 'handlerfile' => '/lib/portfoliolib.php', 'handlerfunction' => 'portfolio_handle_event', // argument to call_user_func(), could be an array 'schedule' => 'cron', 'internal' => 0, diff --git a/version.php b/version.php index a5797f735b8..b0cfa51dea9 100644 --- a/version.php +++ b/version.php @@ -29,7 +29,7 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2013102203.00; // YYYYMMDD = weekly release date of this DEV branch. +$version = 2013102203.01; // YYYYMMDD = weekly release date of this DEV branch. // RR = release increments - 00 in DEV branches. // .XX = incremental changes.