58sniper
10-02-2004, 01:20 AM
Okay, I've install this a couple of times now and have been meaning to mention this. In the download for CMPS, the templates text file has some typos in it. These are causing validation problems.
------------------------------------
calendar_smallmonth_day_other
------------------------------------
<!-- a single day from another month on the small calendars -->
<td class="smallfont"><em><if condition="$show['dontshowweek']"><span class="smallfont">$day</span><else />$day</if></</em></td>
There is an extra </ in there.
------------------------------------
calendar_smallmonth_header
------------------------------------
<tr>
<if condition="$show['dontshowweek']">
<td class="tcat" colspan="$colspan" align="left"><span class="smallfont"><b>$vba_options[portal_blockbullet]
<else />
<td class="tcat" colspan="$colspan" align="center"><span class="smallfont"><b>
</if><a href="$vboptions/calendar.php?$session[sessionurl]month=$month&year=$year&c=$calendarid&do=displaymonth">$monthname $year</a>[b]</b></span></td>
</tr>
<tr align="center">
<if condition="!$show['dontshowweek']"><td class="thead"> </td></if>
<if condition="$show['day1']"><td class="thead">$day1</td></if>
<if condition="$show['day2']"><td class="thead">$day2</td></if>
<if condition="$show['day3']"><td class="thead">$day3</td></if>
<if condition="$show['day4']"><td class="thead">$day4</td></if>
<if condition="$show['day5']"><td class="thead">$day5</td></if>
<if condition="$show['day6']"><td class="thead">$day6</td></if>
<if condition="$show['day7']"><td class="thead">$day7</td></if>
</tr>
$calendarrowbits
In this one there is an opening <span> in the first conditional (in red), but not in the second (correct location for one is in blue). They both need to be the same. They are also missing the closing </b> and </span> (the correct location for these is in blue). Also, I noticed while posting this that vB seems to want to put a space in
do=displaymonth
which shouldn't be there (and no matter how hard I tried, it still shows up there)
------------------------------------
calendar_smallmonth_day_other
------------------------------------
<!-- a single day from another month on the small calendars -->
<td class="smallfont"><em><if condition="$show['dontshowweek']"><span class="smallfont">$day</span><else />$day</if></</em></td>
There is an extra </ in there.
------------------------------------
calendar_smallmonth_header
------------------------------------
<tr>
<if condition="$show['dontshowweek']">
<td class="tcat" colspan="$colspan" align="left"><span class="smallfont"><b>$vba_options[portal_blockbullet]
<else />
<td class="tcat" colspan="$colspan" align="center"><span class="smallfont"><b>
</if><a href="$vboptions/calendar.php?$session[sessionurl]month=$month&year=$year&c=$calendarid&do=displaymonth">$monthname $year</a>[b]</b></span></td>
</tr>
<tr align="center">
<if condition="!$show['dontshowweek']"><td class="thead"> </td></if>
<if condition="$show['day1']"><td class="thead">$day1</td></if>
<if condition="$show['day2']"><td class="thead">$day2</td></if>
<if condition="$show['day3']"><td class="thead">$day3</td></if>
<if condition="$show['day4']"><td class="thead">$day4</td></if>
<if condition="$show['day5']"><td class="thead">$day5</td></if>
<if condition="$show['day6']"><td class="thead">$day6</td></if>
<if condition="$show['day7']"><td class="thead">$day7</td></if>
</tr>
$calendarrowbits
In this one there is an opening <span> in the first conditional (in red), but not in the second (correct location for one is in blue). They both need to be the same. They are also missing the closing </b> and </span> (the correct location for these is in blue). Also, I noticed while posting this that vB seems to want to put a space in
do=displaymonth
which shouldn't be there (and no matter how hard I tried, it still shows up there)