cvs diff: Diffing includes cvs diff: Diffing misc cvs diff: Diffing modules Index: modules/comment.module =================================================================== RCS file: /cvs/drupal/drupal/modules/comment.module,v retrieving revision 1.362 diff -u -F^f -r1.362 comment.module --- modules/comment.module 29 Jul 2005 08:18:19 -0000 1.362 +++ modules/comment.module 29 Jul 2005 11:10:44 -0000 @@ -1021,7 +1021,7 @@ function comment_admin_overview($type = $rows[] = array( l($comment->subject, "node/$comment->nid", array('title' => truncate_utf8($comment->comment, 128)), NULL, "comment-$comment->cid") ." ". theme('mark', node_mark($comment->nid, $comment->timestamp)), format_name($comment), - ($comment->status == COMMENT_PUBLISHED ? t('Published') : t('Not published')), + array('data' => ($comment->status == COMMENT_PUBLISHED ? theme('image', 'misc/checkmark.png', t('published'), t('published')) : theme('image', 'misc/error.png', t('not published'), t('not published'))), 'align' => 'center'), format_date($comment->timestamp, 'small'), l(t('edit'), "comment/edit/$comment->cid", array(), $destination), l(t('delete'), "comment/delete/$comment->cid", array(), $destination) Index: modules/node.module =================================================================== RCS file: /cvs/drupal/drupal/modules/node.module,v retrieving revision 1.511 diff -u -F^f -r1.511 node.module --- modules/node.module 29 Jul 2005 03:29:53 -0000 1.511 +++ modules/node.module 29 Jul 2005 11:10:45 -0000 @@ -914,7 +914,7 @@ function node_admin_nodes() { l($node->title, 'node/'. $node->nid) .' '. theme('mark', node_mark($node->nid, $node->changed)), node_invoke($node, 'node_name'), format_name($node), - ($node->status ? t('published') : t('not published')), + array('data' => ($node->status ? theme('image', 'misc/checkmark.png', t('published'), t('published')) : theme('image', 'misc/error.png', t('not published'), t('not published'))), 'align' => 'center'), l(t('edit'), 'node/'. $node->nid .'/edit', array(), $destination)); } Index: modules/user.module =================================================================== RCS file: /cvs/drupal/drupal/modules/user.module,v retrieving revision 1.493 diff -u -F^f -r1.493 user.module --- modules/user.module 29 Jul 2005 07:18:36 -0000 1.493 +++ modules/user.module 29 Jul 2005 11:10:45 -0000 @@ -1712,7 +1712,7 @@ function user_admin_account() { $destination = drupal_get_destination(); while ($account = db_fetch_object($result)) { $rows[] = array(format_name($account), - $status[$account->status], + array('data' => ($status[$account->status] == 'active' ? theme('image', 'misc/checkmark.png', t('active'), t('active')) : theme('image', 'misc/error.png', t('blocked'), t('blocked'))), 'align' => 'center'), format_interval(time() - $account->created), $account->access ? t('%time ago', array('%time' => format_interval(time() - $account->access))) : t('never'), l(t('edit'), "user/$account->uid/edit", array(), $destination)); cvs diff: Diffing scripts cvs diff: Diffing sites