Fixed character in pagination

Change-Id: I8a25d9b6b27ea4c0f1c4a441c2e3e86d05eaa1e6
diff --git a/Changes b/Changes
index fadbc50..e4298be 100755
--- a/Changes
+++ b/Changes
@@ -7,6 +7,7 @@
         - Fix treatment of 'data:,'-attachements.
         - Rename "Institute for the German Language" to
           "Leibniz Institute for the German Language".
+        - Fixed "next"-character in paginations.
 
 0.31 2018-11-30
         - Update to Mojolicious >= 8.06.
diff --git a/lib/Kalamar.pm b/lib/Kalamar.pm
index 0b97fad..9fb75f7 100644
--- a/lib/Kalamar.pm
+++ b/lib/Kalamar.pm
@@ -126,7 +126,7 @@
   # Pagination widget
   $self->plugin('TagHelpers::Pagination' => {
     prev      => '<span><span>&lt;</span></span>',
-    next      => '<span><span>&lt;</span></span>',
+    next      => '<span><span>&gt;</span></span>',
     ellipsis  => '<a class="ellipsis"><span><span>...</span></span></a>',
     separator => '',
     current   => '<span>{current}</span>',