From 9a23223e253d95377123a9b4b49a54cc8cdbe744 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 21 Jan 2003 22:44:25 +0000 Subject: - Applied Ori's format_plural() patch; see mailing list for details. NOTE: some modules in the contributions repository might need to be updated. --- modules/throttle/throttle.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/throttle') diff --git a/modules/throttle/throttle.module b/modules/throttle/throttle.module index 4756fb2bc..ed95241eb 100644 --- a/modules/throttle/throttle.module +++ b/modules/throttle/throttle.module @@ -130,7 +130,7 @@ function throttle_display_throttle_block() { $output .= "Probability: $probability%
\n"; if ($recent_activity["hits"]) { $output .= "
This site has served "; - $output .= format_plural($recent_activity["hits"] , " page", " pages"); + $output .= format_plural($recent_activity["hits"] , "1 page", "%count pages"); $output .= " in the past minute."; } } -- cgit v1.2.3