? boost_page_arguments.patch
Index: boost.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/boost/boost.module,v
retrieving revision 1.3.2.2.2.5.2.101
diff -u -p -r1.3.2.2.2.5.2.101 boost.module
--- boost.module	13 Aug 2009 06:48:14 -0000	1.3.2.2.2.5.2.101
+++ boost.module	18 Aug 2009 06:16:47 -0000
@@ -1940,12 +1940,14 @@ function _boost_get_menu_router() {
   }
   // Try to handle everything else
   elseif (is_array($router_item['page_arguments'])) {
+    $page_arguments = '';
     foreach ($router_item['page_arguments'] as $string) {
       if (is_string($string)) {
-        $router_item['page_arguments'] = $string;
+        $page_arguments = $string;
         break;
       }
     }
+    $router_item['page_arguments'] = $page_arguments;
   }
   // Set empty if page_arguments is an empty object.
   if (empty($router_item['page_arguments'])) {
