diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-02-06 07:32:57 +0100 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-02-08 09:14:10 +0100 |
commit | c191ef64593eb74094571fda0799cb41bdfbe0a4 (patch) | |
tree | 84c93c6eb2b3330aebf2e1a89eee7d16d1647081 /apps/contacts/ajax | |
parent | 0c5eb542bdd3742cada1fa5331b1a3f4ae3f6975 (diff) | |
download | nextcloud-server-c191ef64593eb74094571fda0799cb41bdfbe0a4.tar.gz nextcloud-server-c191ef64593eb74094571fda0799cb41bdfbe0a4.zip |
Added files for new contact editor/viewer.
Diffstat (limited to 'apps/contacts/ajax')
-rw-r--r-- | apps/contacts/ajax/editname.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/apps/contacts/ajax/editname.php b/apps/contacts/ajax/editname.php index c7a7bcdeaf8..31bdd125675 100644 --- a/apps/contacts/ajax/editname.php +++ b/apps/contacts/ajax/editname.php @@ -17,13 +17,10 @@ function bailOut($msg) { function debug($msg) { OC_Log::write('contacts','ajax/editname.php: '.$msg, OC_Log::DEBUG); } -foreach ($_GET as $key=>$element) { - debug('_GET: '.$key.'=>'.$element); -} $tmpl = new OC_TEMPLATE("contacts", "part.edit_name_dialog"); -$id = $_GET['id']; +$id = isset($_GET['id'])?$_GET['id']:''; if($id) { $vcard = OC_Contacts_App::getContactVCard($id); $name = array('', '', '', '', ''); |