Changeset 817
- Timestamp:
- 02/25/09 17:34:31 (15 years ago)
- Location:
- plugins/dcCron
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/dcCron/_define.php
r815 r817 14 14 15 15 $this->registerModule( 16 /* Name */ "dcCron",17 /* Description*/ "Schedule any tasks",18 /* Author */ "Tomtom",19 /* Version */ '0.7.3',20 /* Permissions */ 'admin',21 null,22 /* Priority */ 1000016 /* Name */ "dcCron", 17 /* Description*/ "Schedule any tasks", 18 /* Author */ "Tomtom", 19 /* Version */ '0.7.4', 20 /* Permissions */ 'admin', 21 null, 22 /* Priority */ 10000 23 23 ); 24 24 -
plugins/dcCron/inc/class.dc.cron.php
r816 r817 246 246 private function save() 247 247 { 248 try { 249 $this->core->blog->settings->setNamespace('dccron'); 250 $this->core->blog->settings->put('dccron_tasks',serialize($this->tasks),'string'); 251 $this->core->blog->settings->put('dccron_errors',serialize($this->errors),'string'); 252 $this->core->blog->triggerBlog(); 253 } catch (Exception $e) { 254 $this->core->error->add($e->getMessage()); 255 } 248 $this->core->blog->settings->setNamespace('dccron'); 249 $this->core->blog->settings->put('dccron_tasks',serialize($this->tasks),'string'); 250 $this->core->blog->settings->put('dccron_errors',serialize($this->errors),'string'); 251 $this->core->blog->triggerBlog(); 256 252 } 257 253 }
Note: See TracChangeset
for help on using the changeset viewer.