Changeset 59625 in spip-zone
- Timestamp:
- Mar 22, 2012, 7:45:30 AM (9 years ago)
- Location:
- _plugins_/comments_phpbb
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/comments_phpbb/comments_phpbb_fonctions.php
r32294 r59625 8 8 list($year, $month, $day) = explode('-', $date); 9 9 list($hour, $minute, $second) = explode(':', $time); 10 11 $timestamp = mktime( $hour, $minute, $second, $month, $day,$year);12 10 11 $timestamp = mktime((int)$hour, (int)$minute, (int)$second, (int)$month, (int)$day, (int)$year); 12 13 13 return $timestamp; 14 14 } -
_plugins_/comments_phpbb/comments_phpbb_pipeline.php
r32294 r59625 9 9 $col_id = id_table_objet('article'); 10 10 11 $result = sql_select(array('titre','chapo','statut','id_secteur' ),$flux['args']['table'],$col_id."='".$flux['args']['id_objet']."'");11 $result = sql_select(array('titre','chapo','statut','id_secteur','date'),$flux['args']['table'],$col_id."='".$flux['args']['id_objet']."'"); 12 12 13 13 // l'article existe
Note: See TracChangeset
for help on using the changeset viewer.