Changeset 1362
- Timestamp:
- 08/05/09 17:21:17 (14 years ago)
- Location:
- plugins/dcCron
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/dcCron/_define.php
r1060 r1362 17 17 /* Description*/ "Schedule any tasks", 18 18 /* Author */ "Tomtom (http://blog.zenstyle.fr)", 19 /* Version */ '1.1. 7',19 /* Version */ '1.1.8', 20 20 /* Permissions */ 'admin', 21 21 null, -
plugins/dcCron/inc/class.dc.cron.php
r1060 r1362 21 21 * @param: $core dcCore 22 22 */ 23 public function __construct( &$core)23 public function __construct($core) 24 24 { 25 25 $this->core =& $core; … … 42 42 $v['enabled'] 43 43 ) { 44 if (call_user_func($v['callback'] ) === false) {44 if (call_user_func($v['callback'],$k) === false) { 45 45 $this->errors[$k] = sprintf(__('[%s] Impossible to execute task : %s'),dt::str($format,$time),$k); 46 46 }
Note: See TracChangeset
for help on using the changeset viewer.