? boost-619080.patch
Index: boost.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/boost/boost.module,v
retrieving revision 1.3.2.2.2.5.2.215
diff -u -p -r1.3.2.2.2.5.2.215 boost.module
--- boost.module	1 Nov 2009 00:10:07 -0000	1.3.2.2.2.5.2.215
+++ boost.module	1 Nov 2009 03:36:59 -0000
@@ -750,16 +750,14 @@ function boost_block($op = 'list', $delt
               $ttl = boost_db_get_ttl($filename);
               $generate = boost_get_generation_time($filename);
               $output = '';
-              if (boost_has_site_changed()) {
-                $output .= t('Globally the site has changed.') . ' ';
-              }
-              $output .= t('This page is being served to anonymous visitors from the static page cache. Took %time seconds to generate this cached page.', array('%time' => round($generate, 3))) . ' ';
+              $output .= t('Site Has Changed: %old<br />', array('%old' => boost_has_site_changed() ? 'True' : 'False'));
               if ($ttl < 0) {
-                $output .= t('<strong>The cached copy expired %interval ago.</strong>', array('%interval' => format_interval(abs($ttl))));
+                $output .= t('<strong>Expired: %interval ago</strong><br />', array('%interval' => format_interval(abs($ttl))));
               }
               else {
-                $output .= t('The cached copy will expire in %interval.', array('%interval' => format_interval(abs($ttl))));
+                $output .= t('Expire In: %interval<br />', array('%interval' => format_interval(abs($ttl))));
               }
+              $output .= t('Cache Generated: %time seconds<br />', array('%time' => round($generate, 2))) . ' ';
               $output .=  drupal_get_form('boost_block_flush_form');
             }
             $error = FALSE;
