[Vtigercrm-commits] [vtiger-commits] r9223 - /vtigercrm/trunk/modules/Calendar/calendar_share.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Thu Aug 31 06:28:55 EDT 2006
Author: saraj
Date: Thu Aug 31 04:28:50 2006
New Revision: 9223
Log:
changes made to fix the calendar related issue --Minnie
Modified:
vtigercrm/trunk/modules/Calendar/calendar_share.php
Modified: vtigercrm/trunk/modules/Calendar/calendar_share.php
==============================================================================
--- vtigercrm/trunk/modules/Calendar/calendar_share.php (original)
+++ vtigercrm/trunk/modules/Calendar/calendar_share.php Thu Aug 31 04:28:50 2006
@@ -50,9 +50,11 @@
<input type="checkbox" name="sttime_check" <? if($current_user->start_hour != ''){?> checked <? } ?> onClick="enableCalstarttime();"> <?echo $mod_strings['LBL_CALSTART']?>
<select name="start_hour" <? if($current_user->start_hour == ''){?>disabled <? } ?> >
<?
- for($i=6;$i<=16;$i++)
+ for($i=0;$i<=23;$i++)
{
- if($i >= 12)
+ if($i == 0)
+ $hour = "12:00 am";
+ elseif($i >= 12)
{
if($i == 12)
$hour = $i;
More information about the vtigercrm-commits
mailing list