/**
* SearchCDRForm Class
*
- * $Horde: incubator/operator/lib/Form/SearchCDR.php,v 1.6 2008/07/06 18:21:50 bklang Exp $
+ * $Horde: incubator/operator/lib/Form/SearchCDR.php,v 1.7 2009/06/02 14:53:20 chuck Exp $
*
* Copyright 2008 Alkaloid Networks LLC <http://projects.alkaloid.net>
*
parent::Horde_Form($vars, $title);
// FIXME: Generate a list of clients from Turba?
- //$clients =
+ //$clients =
$now = time();
if (!$vars->exists('startdate')) {
// Default to the end of the previous calendar month
$month = date('n', $now) - 1;
$year = date('Y', $now);
- $lastday = Horde_Date::daysInMonth($month, $year);
+ $lastday = Horde_Date_Utils::daysInMonth($month, $year);
$enddate = array('day' => $lastday,
'month' => $month,
'year' => $year,