Index: template.php
===================================================================
RCS file: /cvs/drupal-private/private/bluebeach/template.php,v
retrieving revision 1.8.2.7
diff -u -p -r1.8.2.7 template.php
--- template.php	4 Feb 2008 21:46:13 -0000	1.8.2.7
+++ template.php	5 Oct 2008 01:44:09 -0000
@@ -30,6 +30,9 @@ function _phptemplate_variables($hook, $
       break;
     case 'node':
       $type = $variables['node']->type; 
+      if ($type == 'book' || $type == 'project_project') {
+        $variables['modified'] = t('Last modified: !date', array('!date' => format_date($variables['node']->changed)));
+      }
       break;
     case 'comment':
       // Collapse unpublished comments on issue nodes.
Index: node.tpl.php
===================================================================
RCS file: /cvs/drupal-private/private/bluebeach/node.tpl.php,v
retrieving revision 1.2.4.2
diff -u -p -r1.2.4.2 node.tpl.php
--- node.tpl.php	4 Feb 2008 19:41:22 -0000	1.2.4.2
+++ node.tpl.php	5 Oct 2008 01:44:09 -0000
@@ -8,6 +8,9 @@
   <div class="clear-block">
    <div class="terms"><?php print $terms ?></div>
    <div class="info<?php print ($page == 0) ? '-list' : '-page'; ?>"><?php print substr(str_replace(array(' on ', 'Submitted by '), array(' - ', ''), $submitted), 0, -1); ?></div>
+   <?php if (!empty($modified)): ?>
+     <div class="modified info<?php print ($page == 0) ? '-list' : '-page'; ?>"><?php print $modified; ?></div>
+   <?php endif; ?>
   </div>
   <div class="content">
     <?php print fixblockquotes($content); ?>
