mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
Working on better error reporting for the database classes
This commit is contained in:
parent
53f00c2bfc
commit
3ef0a59006
@ -34,7 +34,7 @@
|
|||||||
$phpgw->common->read_preferences("email");
|
$phpgw->common->read_preferences("email");
|
||||||
$phpgw->common->read_preferences("calendar");
|
$phpgw->common->read_preferences("calendar");
|
||||||
|
|
||||||
$phpgw->db->query("select app_version from applications where app_name='admin'");
|
$phpgw->db->query("select app_version from applications where app_name='admin'",__LINE__,__FILE__);
|
||||||
$phpgw->db->next_record();
|
$phpgw->db->next_record();
|
||||||
|
|
||||||
if ($phpgw_info["server"]["version"] > $phpgw->db->f("app_version")) {
|
if ($phpgw_info["server"]["version"] > $phpgw->db->f("app_version")) {
|
||||||
@ -107,7 +107,7 @@
|
|||||||
&& $phpgw_info["user"]["preferences"]["addressbook"]["mainscreen_showbirthdays"]) {
|
&& $phpgw_info["user"]["preferences"]["addressbook"]["mainscreen_showbirthdays"]) {
|
||||||
echo "<!-- Birthday info -->\n";
|
echo "<!-- Birthday info -->\n";
|
||||||
$phpgw->db->query("select DISTINCT ab_firstname,ab_lastname from addressbook where "
|
$phpgw->db->query("select DISTINCT ab_firstname,ab_lastname from addressbook where "
|
||||||
. "ab_bday like '" . $phpgw->common->show_date(time(),"n/d")
|
. "ab_bday like '" . $phpgw->common->show_date(time(),"n/d",__LINE__,__FILE__)
|
||||||
. "/%' and (ab_owner='" . $phpgw_info["user"]["userid"] . "' or ab_access='"
|
. "/%' and (ab_owner='" . $phpgw_info["user"]["userid"] . "' or ab_access='"
|
||||||
. "ab_public')");
|
. "ab_public')");
|
||||||
while ($phpgw->db->next_record()) {
|
while ($phpgw->db->next_record()) {
|
||||||
@ -120,7 +120,7 @@
|
|||||||
$phpgw->common->show_date(time(),"Y")),"n/d" );
|
$phpgw->common->show_date(time(),"Y")),"n/d" );
|
||||||
$phpgw->db->query("select ab_firstname,ab_lastname from addressbook where "
|
$phpgw->db->query("select ab_firstname,ab_lastname from addressbook where "
|
||||||
. "ab_bday like '$tommorow/%' and (ab_owner='"
|
. "ab_bday like '$tommorow/%' and (ab_owner='"
|
||||||
. $phpgw_info["user"]["userid"] . "' or ab_access='public')");
|
. $phpgw_info["user"]["userid"] . "' or ab_access='public')",__LINE__,__FILE__);
|
||||||
while ($phpgw->db->next_record()) {
|
while ($phpgw->db->next_record()) {
|
||||||
echo "<tr><td>" . lang("Tommorow is x's birthday.", $phpgw->db->f("ab_firstname") . " "
|
echo "<tr><td>" . lang("Tommorow is x's birthday.", $phpgw->db->f("ab_firstname") . " "
|
||||||
. $phpgw->db->f("ab_lastname")) . "</td></tr>\n";
|
. $phpgw->db->f("ab_lastname")) . "</td></tr>\n";
|
||||||
@ -142,7 +142,7 @@
|
|||||||
. " where cal_date='" . $phpgw->common->show_date(time(),"Ymd")
|
. " where cal_date='" . $phpgw->common->show_date(time(),"Ymd")
|
||||||
. "' and (webcal_entry_user.cal_login='" . $phpgw_info["user"]["userid"]
|
. "' and (webcal_entry_user.cal_login='" . $phpgw_info["user"]["userid"]
|
||||||
. "' and webcal_entry.cal_id = webcal_entry_user.cal_id) and "
|
. "' and webcal_entry.cal_id = webcal_entry_user.cal_id) and "
|
||||||
. "(cal_priority='3')");
|
. "(cal_priority='3')",__LINE__,__FILE__);
|
||||||
$phpgw->db->next_record();
|
$phpgw->db->next_record();
|
||||||
$check = $phpgw->db->f(0);
|
$check = $phpgw->db->f(0);
|
||||||
if ($check == 1) {
|
if ($check == 1) {
|
||||||
|
Loading…
Reference in New Issue
Block a user