From: Stéphane Jacob Date: Mon, 21 Jun 2010 16:35:09 +0000 (+0200) Subject: Fixes saving of profesionnel phones. X-Git-Tag: xorg/1.0.0~114 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=e3164bb10232603df9576e843a9a4e26020ade33;p=platal.git Fixes saving of profesionnel phones. Signed-off-by: Stéphane Jacob --- diff --git a/modules/profile/jobs.inc.php b/modules/profile/jobs.inc.php index 61d80bb..5245a2f 100644 --- a/modules/profile/jobs.inc.php +++ b/modules/profile/jobs.inc.php @@ -250,7 +250,7 @@ class ProfileSettingJob extends ProfileSettingGeocoding $address = new ProfileSettingAddress(); $address->saveAddress($page->pid(), $id, $job['w_address'], 'job'); $profiletel = new ProfileSettingPhones('pro', $id); - $profiletel->saveTels('tel', $job['w_phone']); + $profiletel->saveTels($page->pid(), 'tel', $job['w_phone']); } } }