diff --git a/addressbook/index.php b/addressbook/index.php
index b3ad130650..2c79c9ff43 100755
--- a/addressbook/index.php
+++ b/addressbook/index.php
@@ -82,7 +82,7 @@
- '.$phpgw->common->check_owner($myowner,"edit.php",lang("edit"),"ab_id=".$myid."&start=".$start."&sort=".$sort."&order=".$order).'
+ '.$phpgw->common->check_owner($myowner,"edit.php",lang("edit"),"ab_id=".$myid."&start=".$start."&sort=".$sort."&order=".$order."&query=".$query."&sort=".$sort).'
|
diff --git a/addressbook/oldadd.php b/addressbook/oldadd.php
deleted file mode 100755
index 6fdf2e3693..0000000000
--- a/addressbook/oldadd.php
+++ /dev/null
@@ -1,135 +0,0 @@
- *
- * -------------------------------------------- *
- * This program is free software; you can redistribute it and/or modify it *
- * under the terms of the GNU General Public License as published by the *
- * Free Software Foundation; either version 2 of the License, or (at your *
- * option) any later version. *
- \**************************************************************************/
-
- /* $Id$ */
-
- if ($submit || $AddVcard) {
- $phpgw_info["flags"] = array("noheader" => True, "nonavbar" => True);
- }
-
- $phpgw_info["flags"]["currentapp"] = "addressbook";
- $phpgw_info["flags"]["enable_addressbook_class"] = True;
- include("../header.inc.php");
-
-
- if ($AddVcard){
- Header("Location: " . $phpgw->link($phpgw_info["server"]["webserver_url"] .
- "/addressbook/vcardin.php"));
- }
- else if ($add_email) {
- list($fields["firstname"],$fields["lastname"]) = explode(" ", $name);
- $fields["email"] = $add_email;
- form("","add.php","Add",$fields);
- } else if (! $submit && ! $add_email) {
- form("","add.php","Add","","","");
- } else {
- if (! $bday_month && ! $bday_day && ! $bday_year) {
- $bday = "";
- } else {
- $bday = "$bday_month/$bday_day/$bday_year";
- }
-
- if ($access != "private" && $access != "public") {
- $access = $phpgw->accounts->array_to_string($access,$n_groups);
- }
-
- if ($url == "http://") {
- $url = "";
- }
-
- if ($phpgw_info["apps"]["timetrack"]["enabled"]) {
- $sql = "insert into addressbook (ab_owner,ab_access,ab_firstname,ab_lastname,ab_title,ab_email,"
- . "ab_hphone,ab_wphone,ab_fax,ab_pager,ab_mphone,ab_ophone,ab_street,ab_address2,ab_city,"
- . "ab_state,ab_zip,ab_bday,"
- . "ab_notes,ab_company_id,ab_url) values ('" . $phpgw_info["user"]["account_id"] . "','$access','"
- . addslashes($firstname). "','"
- . addslashes($lastname) . "','"
- . addslashes($title) . "','"
- . addslashes($email) . "','"
- . addslashes($hphone) . "','"
- . addslashes($wphone) . "','"
- . addslashes($fax) . "','"
- . addslashes($pager) . "','"
- . addslashes($mphone) . "','"
- . addslashes($ophone) . "','"
- . addslashes($street) . "','"
- . addslashes($address2) . "','"
- . addslashes($city) . "','"
- . addslashes($state) . "','"
- . addslashes($zip) . "','"
- . addslashes($bday) . "','"
- . addslashes($notes) . "','"
- . addslashes($company) . "','"
- . addslashes($url) . "')";
- } else {
- $sql = "insert into addressbook (ab_owner,ab_access,ab_firstname,ab_lastname,ab_title,ab_email,"
- . "ab_hphone,ab_wphone,ab_fax,ab_pager,ab_mphone,ab_ophone,ab_street,ab_address2,ab_city,"
- . "ab_state,ab_zip,ab_bday,"
- . "ab_notes,ab_company,ab_url) values ('" . $phpgw_info["user"]["account_id"] . "','$access','"
- . addslashes($firstname). "','"
- . addslashes($lastname) . "','"
- . addslashes($title) . "','"
- . addslashes($email) . "','"
- . addslashes($hphone) . "','"
- . addslashes($wphone) . "','"
- . addslashes($fax) . "','"
- . addslashes($pager) . "','"
- . addslashes($mphone) . "','"
- . addslashes($ophone) . "','"
- . addslashes($street) . "','"
- . addslashes($address2) . "','"
- . addslashes($city) . "','"
- . addslashes($state) . "','"
- . addslashes($zip) . "','"
- . addslashes($bday) . "','"
- . addslashes($notes) . "','"
- . addslashes($company) . "','"
- . addslashes($url) . "')";
- }
- $phpgw->db->query($sql);
-
- Header("Location: " . $phpgw->link($phpgw_info["server"]["webserver_url"] . "/addressbook/",
- "cd=14"));
- }
-
-?>
-
-
-
-