fixes with new db structures

This commit is contained in:
skeeter 2000-09-28 00:19:04 +00:00
parent 6b59cc7842
commit 8d52ea0dc7
4 changed files with 11 additions and 10 deletions

View File

@ -27,7 +27,7 @@
if (! $submit) { if (! $submit) {
$phpgw->db->query("SELECT * FROM addressbook WHERE ab_owner='" $phpgw->db->query("SELECT * FROM addressbook WHERE ab_owner='"
. $phpgw_info["user"]["userid"] . "' AND ab_id='$ab_id'"); . $phpgw_info["user"]["userid"] . "' AND ab_id=$ab_id");
$phpgw->db->next_record(); $phpgw->db->next_record();
$fields = array('ab_id' => $phpgw->db->f("ab_id"), $fields = array('ab_id' => $phpgw->db->f("ab_id"),
@ -74,17 +74,17 @@
. "', ab_notes='" . addslashes($notes) . "', ab_notes='" . addslashes($notes)
. "', ab_company='" . addslashes($company) . "', ab_company='" . addslashes($company)
. "', ab_access='" . addslashes($access) . "', ab_access='" . addslashes($access)
. "' WHERE ab_owner='" . $phpgw_info["user"]["userid"] . "' AND ab_id='$ab_id'"; . "' WHERE ab_owner='" . $phpgw_info["user"]["userid"] . "' AND ab_id=$ab_id";
$phpgw->db->query($sql); $phpgw->db->query($sql);
Header("Location: " . $phpgw->link("view.php","&con=$con&order=$order&sort=$sort&filter=" Header("Location: " . $phpgw->link("view.php","&ab_id=$ab_id&order=$order&sort=$sort&filter="
. "$filter&start=$start")); . "$filter&start=$start"));
exit; exit;
} }
?> ?>
<input type="hidden" name="con" value="<? echo $con; ?>"> <input type="hidden" name="ab_id" value="<? echo $ab_id; ?>">
<input type="hidden" name="sort" value="<? echo $sort; ?>"> <input type="hidden" name="sort" value="<? echo $sort; ?>">
<input type="hidden" name="order" value="<? echo $order; ?>"> <input type="hidden" name="order" value="<? echo $order; ?>">
<input type="hidden" name="filter" value="<? echo $filter; ?>"> <input type="hidden" name="filter" value="<? echo $filter; ?>">
@ -97,10 +97,10 @@
<input type="submit" name="submit" value="<?php echo lang("Submit"); ?>"> <input type="submit" name="submit" value="<?php echo lang("Submit"); ?>">
</TD> </TD>
<TD align=left width=7%> <TD align=left width=7%>
<a href="<?php echo $phpgw->link("view.php","con=$con") . "\">" . lang("Cancel"); ?></a> <a href="<?php echo $phpgw->link("view.php","ab_id=$ab_id") . "\">" . lang("Cancel"); ?></a>
</TD> </TD>
<TD align=right> <TD align=right>
<a href="<?php echo $phpgw->link("delete.php","con=$con") . "\">" . lang("Delete"); ?></a> <a href="<?php echo $phpgw->link("delete.php","ab_id=$ab_id") . "\">" . lang("Delete"); ?></a>
</TD> </TD>
</TR> </TR>
</TBODY> </TBODY>
@ -112,3 +112,4 @@
<?php <?php
include($phpgw_info["server"]["api_dir"] . "/footer.inc.php"); include($phpgw_info["server"]["api_dir"] . "/footer.inc.php");
?>

View File

@ -282,5 +282,5 @@
</tr> </tr>
</table> </table>
<?php <?php
} }
?>

View File

@ -71,11 +71,11 @@
<?php <?php
$phpgw->nextmatchs->show("index.php",$start,$phpgw->db->f(0),"&order=$order&filter=$filter&sort=" $phpgw->nextmatchs->show("index.php",$start,$phpgw->db->f(0),"&order=$order&filter=$filter&sort="
. "$sort&query=$query", "75%", $phpgw_info["theme"][th_bg]); . "$sort&query=$query", "75%", $phpgw_info["theme"]["th_bg"]);
?> ?>
<table width=75% border=0 cellspacing=1 cellpadding=3> <table width=75% border=0 cellspacing=1 cellpadding=3>
<tr bgcolor="<?php echo $phpgw_info["theme"][th_bg]; ?>"> <tr bgcolor="<?php echo $phpgw_info["theme"]["th_bg"]; ?>">
<?php <?php
if ( $phpgw_info["user"]["preferences"]["addressbook_view_company"] == "True" ) { if ( $phpgw_info["user"]["preferences"]["addressbook_view_company"] == "True" ) {
echo '<td height="21">'; echo '<td height="21">';

View File

@ -26,7 +26,7 @@
if ($filter != "private") if ($filter != "private")
$filtermethod = " or ab_access='public' " . $phpgw->accounts->sql_search("ab_access"); $filtermethod = " or ab_access='public' " . $phpgw->accounts->sql_search("ab_access");
$phpgw->db->query("SELECT * FROM addressbook WHERE ab_id='$ab_id' AND (ab_owner='" $phpgw->db->query("SELECT * FROM addressbook WHERE ab_id=$ab_id AND (ab_owner='"
. $phpgw_info["user"]["userid"] . "' $filtermethod)"); . $phpgw_info["user"]["userid"] . "' $filtermethod)");
$phpgw->db->next_record(); $phpgw->db->next_record();