Changeset 28995 for trunk/admin
- Timestamp:
- Jul 7, 2014, 11:36:23 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/comments.php
r28587 r28995 58 58 include_once( PHPWG_ROOT_PATH .'include/functions_comment.inc.php' ); 59 59 check_input_parameter('comments', $_POST, true, PATTERN_ID); 60 60 61 61 if (isset($_POST['validate'])) 62 62 { … … 187 187 ) 188 188 ); 189 if (empty($row['author_id'])) 189 if (empty($row['author_id'])) 190 190 { 191 191 $author_name = $row['author']; … … 202 202 'TN_SRC' => $thumb, 203 203 'AUTHOR' => trigger_change('render_comment_author', $author_name), 204 'DATE' => format_date($row['date'] , true),204 'DATE' => format_date($row['date']).' '.substr($row['date'],11,4), 205 205 'CONTENT' => trigger_change('render_comment_content',$row['content']), 206 206 'IS_PENDING' => ('false' == $row['validated']),
Note: See TracChangeset
for help on using the changeset viewer.