From b2fd44474b126ce8fa179651ea8ad1edc110131c Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Tue, 2 Mar 2010 15:45:30 -0600 Subject: lowercased all tag attribute values --- system/plugins/js_calendar_pi.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'system') diff --git a/system/plugins/js_calendar_pi.php b/system/plugins/js_calendar_pi.php index a35ab56bd..f722777b3 100644 --- a/system/plugins/js_calendar_pi.php +++ b/system/plugins/js_calendar_pi.php @@ -33,7 +33,7 @@ Then to show the actual calendar you'll do this:
-

Today

+

Today

@@ -210,9 +210,9 @@ function build_calendar() str += '
'; str += ''; str += ''; - str += '
<<<\/td>'; + str += '<<<\/td>'; str += '' + months[this.month] + ' ' + this.year + '<\/td>'; - str += '>><\/td>'; + str += '>><\/td>'; str += '<\/tr>'; // Day Names @@ -242,7 +242,7 @@ function build_calendar() } else if (displayNum == selDate && this.highlight == true) // Selected date { - str += '' + displayNum + '<\/td>'; + str += '' + displayNum + '<\/td>'; } else if (displayNum > this.total_days()) { @@ -250,7 +250,7 @@ function build_calendar() } else // Unselected days { - str += '' + displayNum + '<\/td>'; + str += '' + displayNum + '<\/td>'; } if (j % 7 == 6) -- cgit v1.2.3-24-g4f1b