$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r75654 - website/public_html/beta/doc
From: dnljms_at_[hidden]
Date: 2011-11-24 18:56:19
Author: danieljames
Date: 2011-11-24 18:56:19 EST (Thu, 24 Nov 2011)
New Revision: 75654
URL: http://svn.boost.org/trac/boost/changeset/75654
Log:
Website: Use full library name in links in documentation page.
Hopefully not too annoying, and a little helpful for google.
Text files modified: 
   website/public_html/beta/doc/libraries.php |     3 ++-                                     
   1 files changed, 2 insertions(+), 1 deletions(-)
Modified: website/public_html/beta/doc/libraries.php
==============================================================================
--- website/public_html/beta/doc/libraries.php	(original)
+++ website/public_html/beta/doc/libraries.php	2011-11-24 18:56:19 EST (Thu, 24 Nov 2011)
@@ -142,7 +142,8 @@
       global $boost_current_version;
       $docref = '/doc/libs/release/'.$lib['documentation'];
     }
-    print ''.($lib['name'] ? $lib['name'] : $lib['key']).'';
+    $title = $lib['name'] ? $lib['name'] : $lib['key'];
+    print ''.$title.'';
   }
   else
   {