Update of /cvsroot/php-blog/serendipity/include/admin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20822
Modified Files:
comments.inc.php
Log Message:
- Use correct images
Index: comments.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/admin/comments.inc.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- comments.inc.php 21 Dec 2004 13:02:49 -0000 1.10
+++ comments.inc.php 22 Dec 2004 17:49:22 -0000 1.11
@@ -320,8 +320,8 @@
?>
<a href="?serendipity[action]=admin&serendipity[adminModule]=comments&serendipity[adminAction]=approve&serendipity[id]=<?php echo $rs['id'] ?>" title="<?php echo $title; ?>"><img src="<?php echo serendipity_getTemplateFile('admin/img/clock_future.png'); ?>" alt="<?php echo $title; ?>" style="border: 0px none;" /></a>
<?php } ?>
- <a href="?serendipity[action]=admin&serendipity[adminModule]=comments&serendipity[adminAction]=delete&serendipity[id]=<?php echo $rs['id'] ?>&serendipity[entry_id]=<?php echo $rs['entry_id'] ?>" onclick="return confirm('<?php echo sprintf(COMMENT_DELETE_CONFIRM, $rs['id'], htmlspecialchars($rs['author'])) ?>')" title="<?php echo DELETE ?>"><img src="<?php echo serendipity_getTemplateFile('admin/img/delete_image.png'); ?>" alt="<?php echo DELETE; ?>" style="border: 0px none ; vertical-align: bottom;" /></a>
- <a href="?serendipity[action]=admin&serendipity[adminModule]=comments&serendipity[adminAction]=edit&serendipity[id]=<?php echo $rs['id'] ?>&serendipity[entry_id]=<?php echo $rs['entry_id'] ?>" title="<?php echo EDIT; ?>"><img src="<?php echo serendipity_getTemplateFile('admin/img/rename.png'); ?>" alt="<?php echo EDIT; ?>" style="border: 0px none ; vertical-align: bottom;" /></a>
+ <a href="?serendipity[action]=admin&serendipity[adminModule]=comments&serendipity[adminAction]=delete&serendipity[id]=<?php echo $rs['id'] ?>&serendipity[entry_id]=<?php echo $rs['entry_id'] ?>" onclick="return confirm('<?php echo sprintf(COMMENT_DELETE_CONFIRM, $rs['id'], htmlspecialchars($rs['author'])) ?>')" title="<?php echo DELETE ?>"><img src="<?php echo serendipity_getTemplateFile('admin/img/delete.png'); ?>" alt="<?php echo DELETE; ?>" style="border: 0px none ; vertical-align: bottom;" /></a>
+ <a href="?serendipity[action]=admin&serendipity[adminModule]=comments&serendipity[adminAction]=edit&serendipity[id]=<?php echo $rs['id'] ?>&serendipity[entry_id]=<?php echo $rs['entry_id'] ?>" title="<?php echo EDIT; ?>"><img src="<?php echo serendipity_getTemplateFile('admin/img/edit.png'); ?>" alt="<?php echo EDIT; ?>" style="border: 0px none ; vertical-align: bottom;" /></a>
<?php if (strlen($fullBody) > strlen($summary) ) { ?>
<a href="#c<?php echo $rs['id'] ?>" onclick="toggle(<?php echo $rs['id'] ?>); return false;" id="<?php echo $rs['id'] ?>_link" title="<?php echo VIEW; ?>"><img src="<?php echo serendipity_getTemplateFile('admin/img/zoom.png'); ?>" alt="<?php echo VIEW; ?>" style="border: 0px none ; vertical-align: bottom;" /></a>
<?php } ?>
|