From 129b7bfeb7e3fd5104040438f2968cdd978ccf1f Mon Sep 17 00:00:00 2001 From: "David F. Skoll" Date: Fri, 21 Jan 2011 17:01:57 -0500 Subject: [PATCH] Fix typos. --- www/php/remind.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/www/php/remind.php b/www/php/remind.php index f8aa46c4..a642e156 100644 --- a/www/php/remind.php +++ b/www/php/remind.php @@ -111,7 +111,9 @@ class Remind $title = 'Last Quarter'; } $base = rtrim($this->get_el($options, 'imgbase'), '/'); - if ($base !=== null) $img = $base . '/' . $img; + if ($base !== null) { + $img = $base . '/' . $img; + } $moon_html = '
' . "\"$alt\"" . htmlspecialchars($msg) . '
'; } } @@ -126,7 +128,7 @@ class Remind $html .= $this->format_entries($day, $results, $specials, $options, $entries); $html .= ''; } - $html .= ""; + $html .= "\n"; return $html; }