diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-10-09 20:18:05 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-10-09 20:18:05 +0000 |
commit | 76187473383b3be27c414a6982e1417828ec7913 (patch) | |
tree | bf6bf7b1affd07080f66aadb5fbf015cc20b31c5 | |
parent | 88e61f5f7b8fd93b703af49855c469113df5a4cb (diff) | |
download | brdo-76187473383b3be27c414a6982e1417828ec7913.tar.gz brdo-76187473383b3be27c414a6982e1417828ec7913.tar.bz2 |
- Fixed an HTML entity. Patch by Remco.
-rw-r--r-- | modules/cloud.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/cloud.module b/modules/cloud.module index 77817ba8b..2d42992f6 100644 --- a/modules/cloud.module +++ b/modules/cloud.module @@ -141,7 +141,7 @@ function cloud_list($limit = 10) { $hour = floor((time() - $site->timestamp) / 3600); if ($hour < 12) { if ($hour == 0) { - $output .= "<br />". t("Updated < 1 hours ago:"); + $output .= "<br />". t("Updated < 1 hours ago:"); } else { $output .= "<br />". t("Updated %a ago:", array("%a" => format_plural($hour, "hour", "hours"))); |