Missed a semi-colon.

This commit is contained in:
skeeter 2002-09-17 03:03:16 +00:00
parent 143cbc5d42
commit 8aa2a18ac2

View File

@ -232,7 +232,7 @@
if($GLOBALS['phpgw_info']['server']['calendar_type'] == 'sql')
{
$db2 = $this->cal->stream;
$this->cal->stream->query('SELECT cal_id FROM phpgw_cal_user WHERE cal_login='.$account_id,__LINE__,__FILE__)
$this->cal->stream->query('SELECT cal_id FROM phpgw_cal_user WHERE cal_login='.$account_id,__LINE__,__FILE__);
while($this->cal->stream->next_record())
{
$id = $this->cal->stream->f('cal_id');
@ -382,4 +382,4 @@
/* End mcal equiv functions */
}
?>
?>