cellog Fri Mar 30 04:21:10 2007 UTC
Modified files:
/pearweb/templates/notes note-manage-admin.tpl.php
Log:
fully fix Bug #10485 Difference between "Notes" and "User comments"
implement Request #10519 Jump to notes page from notes manager
http://cvs.php.net/viewvc.cgi/pearweb/templates/notes/note-manage-admin.tpl.php?r1=1.17&r2=1.18&diff_format=u
Index: pearweb/templates/notes/note-manage-admin.tpl.php
diff -u pearweb/templates/notes/note-manage-admin.tpl.php:1.17
pearweb/templates/notes/note-manage-admin.tpl.php:1.18
--- pearweb/templates/notes/note-manage-admin.tpl.php:1.17 Wed Mar 28
15:27:35 2007
+++ pearweb/templates/notes/note-manage-admin.tpl.php Fri Mar 30 04:21:10 2007
@@ -30,7 +30,8 @@
<table class="form-holder" cellspacing="1">
<tr>
<th class="form-label_left">Status</th>
- <td class="form-input">Note</td>
+ <td class="form-input">Manual</td>
+ <td class="form-input">Comment</td>
<td class="form-input">Name/Email</td>
<td class="form-input">View Note</td>
</tr>
@@ -40,6 +41,10 @@
<input type="checkbox" name="noteIds[]" value="<?php echo
$pendingComment['note_id']; ?>" />
</th>
<td class="form-input">
+ <a href="/manual/en/<?php echo $pendingComment['page_url'] ?>.php"><?php
+ echo $pendingComment['page_url'] ?></a>
+ </td>
+ <td class="form-input">
<?php
if (strlen($pendingComment['unfiltered_note']) > 200) {
echo substr(htmlspecialchars($pendingComment['unfiltered_note']), 0,
200) . '...';
@@ -63,20 +68,16 @@
<?php endforeach; ?>
<tr>
<th class="form-label_left"><?php echo $caption ?></th>
- <td class="form-input">
+ <td class="form-input" colspan="4">
<input type="submit" name="<?php echo $name ?>" value="<?php echo $button
?>" />
</td>
- <td class="form-input"></td>
- <td class="form-input"></td>
</tr>
<tr>
- <th class="form-label_left">Delete</th>
- <td class="form-input">
- <input type="submit" name="delete" value="Delete selected notes" />
+ <th class="form-label_left">Delete Notes</th>
+ <td class="form-input" colspan="4">
+ <div align="right"><input type="submit" name="delete" value="Delete"
/></div>
</td>
- <td class="form-input"></td>
- <td class="form-input"></td>
-
+ </tr>
</table>
</form>
<?php response_footer(); ?>
|