diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2003-11-18 14:29:49 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2003-11-18 14:29:49 +0000 |
commit | 2f9cf62d61f2124c446364e6acf70726938625c9 (patch) | |
tree | f2c3e0a9296a9d0f51c272d9dca27f3dcaae72e2 /doc | |
parent | e8ba84ef7e8ce95a9e12517402f2b8c99792e407 (diff) | |
download | libxml2-2f9cf62d61f2124c446364e6acf70726938625c9.tar.gz |
Fixed the search uppercase for fragment identifiers, Daniel
Diffstat (limited to 'doc')
-rw-r--r-- | doc/search.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/search.php b/doc/search.php index b00f12d6..4f4b1566 100644 --- a/doc/search.php +++ b/doc/search.php @@ -257,7 +257,7 @@ A:link, A:visited, A:active { text-decoration: underline } $results[$name] = array(($r + $relevance) * 2, $t,$m,$d,$w,$u); } else { - $id = strtoupper($name); + $id = $name; $m = strtolower($module); $url = "html/libxml-$module.html#$id"; $results[$name] = array($relevance,$type, @@ -282,7 +282,7 @@ A:link, A:visited, A:active { text-decoration: underline } $results[$name] = array(($r + $relevance) * 2, $t,$m,$d,$w,$u); } else { - $id = strtoupper($name); + $id = $name; $m = strtolower($module); $url = "XSLT/html/libxslt-$module.html#$id"; $results[$name] = array($relevance,$type, @@ -349,7 +349,7 @@ A:link, A:visited, A:active { text-decoration: underline } $results[$name] = array(($r + $relevance) * 2, $t,$m,$d,$w,$u); } else { - $id = strtoupper($name); + $id = $name; $m = strtolower($module); $u = str_replace( "http://mail.gnome.org/archives/xml/", "", $url); @@ -375,7 +375,7 @@ A:link, A:visited, A:active { text-decoration: underline } $results[$name] = array(($r + $relevance) * 2, $t,$m,$d,$w,$u); } else { - $id = strtoupper($name); + $id = $name; $m = strtolower($module); $u = str_replace( "http://mail.gnome.org/archives/xslt/", "", $url); |