Index: pear-manual.php =================================================================== RCS file: /repository/pearweb/include/pear-manual.php,v retrieving revision 1.31 diff -u -r1.31 pear-manual.php --- pear-manual.php 13 Apr 2004 17:52:23 -0000 1.31 +++ pear-manual.php 15 Apr 2004 19:03:38 -0000 @@ -193,7 +193,7 @@ echo "\n"; echo ' '; echo "\n"; - echo join(delim(), $links); + echo join(delim(false, ' | '), $links); echo "\n"; echo ' '; echo "\n"; Index: layout.php =================================================================== RCS file: /repository/pearweb/include/layout.php,v retrieving revision 1.73 diff -u -r1.73 layout.php --- layout.php 25 Jan 2004 20:19:22 -0000 1.73 +++ layout.php 15 Apr 2004 21:24:19 -0000 @@ -93,11 +93,11 @@ // print a pipe delimiter // -function delim($color=false) { +function delim($color = false, $delimiter = ' | ') { if (!$color) { - return ' | '; + return $delimiter; } - return sprintf(' | ', $color ); + return sprintf('%s', $color, $delimiter); }