From 237ec2ad9c0ac3e0fa1515699ebaa1df41405378 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 17 Jul 2007 04:29:53 +0100 Subject: disable headlines pagination (add hidden pref _PREFS_ENABLE_PAGINATION) --- functions.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index 9f7f39d24..4257184c1 100644 --- a/functions.php +++ b/functions.php @@ -3043,10 +3043,13 @@
  • ".__('Mark as read')."
  • -
  •  
  • "; + "; - if ($limit != 0 && !$search) { + $enable_pagination = get_pref($link, "_PREFS_ENABLE_PAGINATION"); + + if ($limit != 0 && !$search && $enable_pagination) { print " +
  •  
  • ".__('Next page')."
  • @@ -3054,7 +3057,9 @@ } if ($search && $feed_id >= 0 && get_pref($link, 'ENABLE_LABELS') && GLOBAL_ENABLE_LABELS) { - print "
  • + print " +
  •  
  • +
  • ".__('Convert to label').""; -- cgit v1.2.3-54-g00ecf