Changeset 811:09e369efb0ad for inc/core/class.dc.blog.php
- Timestamp:
- 03/29/12 14:02:54 (13 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/core/class.dc.blog.php
r778 r811 1388 1388 1389 1389 $now = dt::toUTC(time()); 1390 $to_change = array();1390 $to_change = new ArrayObject; 1391 1391 1392 1392 if ($rs->isEmpty()) { … … 1410 1410 if (!empty($to_change)) 1411 1411 { 1412 # --BEHAVIOR-- coreBeforeScheduledEntriesPublish 1413 $this->core->callBehavior('coreBeforeScheduledEntriesPublish',$this,$to_change); 1414 1412 1415 $strReq = 1413 1416 'UPDATE '.$this->prefix.'post SET '. … … 1418 1421 $this->con->execute($strReq); 1419 1422 $this->triggerBlog(); 1420 } 1423 1424 # --BEHAVIOR-- coreAfterScheduledEntriesPublish 1425 $this->core->callBehavior('coreAfterScheduledEntriesPublish',$this,$to_change); 1426 } 1427 1421 1428 } 1422 1429
Note: See TracChangeset
for help on using the changeset viewer.