]> granicus.if.org Git - python/commitdiff
Fix the bugfix for SF bug #127151 -- make sure we map "previous_page" to
authorFred Drake <fdrake@acm.org>
Thu, 4 Jan 2001 15:16:01 +0000 (15:16 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 4 Jan 2001 15:16:01 +0000 (15:16 +0000)
"previous" and "next_page" to "next".  This way the proper icons are found.

Doc/perl/l2hinit.perl

index 4e5ff65e646b145a0e2def6dbb43972a9e2e59e9..4ffcc589f1b6cb5a5abd05b1de0017ec75df87a9 100644 (file)
@@ -117,9 +117,16 @@ $my_icon_tags{'contents'} = 'Contents';
 $my_icon_tags{'index'} = 'Index';
 $my_icon_tags{'modules'} = 'Module Index';
 
+@my_icon_names = ();
+$my_icon_names{'previous_page'} = 'previous';
+$my_icon_names{'next_page'} = 'next';
+
 sub get_my_icon {
     my $name = @_[0];
     my $text = $my_icon_tags{$name};
+    if ($my_icon_names{$name}) {
+        $name = $my_icon_names{$name};
+    }
     if ($text eq '') {
         $name = 'blank';
     }